aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/dbl-64
AgeCommit message (Expand)AuthorFilesLines
2017-10-04Use libm_alias_double for dbl-64 fma.Joseph Myers1-6/+2
2017-10-04[BZ #22244] Fix yn(n,0) without SVID wrapperSzabolcs Nagy1-5/+5
2017-10-04[BZ #22243] fix log2(0) and log(10) in downward roundingSzabolcs Nagy2-2/+2
2017-10-03Use libm_alias_double for dbl-64 modf.Joseph Myers2-8/+6
2017-10-03Use libm_alias_double for dbl-64 logb.Joseph Myers2-7/+6
2017-10-03Use libm_alias_float for dbl-64 fmaf.Joseph Myers1-1/+2
2017-10-03Use libm_alias_double for dbl-64 frexp.Joseph Myers2-10/+4
2017-10-03Use libm_alias_double for more dbl-64 functions.Joseph Myers18-95/+37
2017-10-02Use libm_alias_double for dbl-64 atan, tan.Joseph Myers2-10/+4
2017-10-02Make dbl-64 atan and tan into weak aliases.Joseph Myers2-6/+14
2017-09-29Use libm_alias_double for some dbl-64 functions.Joseph Myers29-140/+51
2017-09-29Use fabs(f/l) rather than __fabsWilco Dijkstra3-3/+3
2017-09-28Fix nearbyint arithmetic moved before feholdexcept (bug 22225).Joseph Myers2-6/+6
2017-09-25Fix typo in sincos32.h inclusion guard.Stefan Liebler1-1/+1
2017-09-14Make more libm functions into weak aliases.Joseph Myers14-30/+58
2017-09-13Move exp compat wrappers under math/Szabolcs Nagy1-41/+0
2017-09-05Prefer new libm function wrappers for !LIBM_SVID_COMPAT.Joseph Myers1-1/+3
2017-08-24Fix CFLAGS override in sysdeps/ieee754/dbl-64Szabolcs Nagy1-3/+3
2017-08-21Obsolete matherr, _LIB_VERSION, libieee.a.Joseph Myers1-0/+1
2017-08-03Consistently use uintN_t not u_intN_t in libm.Joseph Myers29-57/+57
2017-03-01Narrowing the visibility of libc-internal.h even further.Zack Weinberg2-2/+2
2017-02-17Fix lgamma*, log10* and log2* results [BZ #21171]Tulio Magno Quites Machado Filho3-3/+3
2017-02-15Fix y0 and y1 exception handling for zero input [BZ #21134]Gabriel F. T. Gomes2-2/+2
2017-02-08Move w_exp to libm-compat-call-autoGabriel F. T. Gomes1-0/+0
2017-01-01Update copyright dates with scripts/update-copyrights.Joseph Myers102-102/+102
2016-12-31Add fromfp functions.Joseph Myers5-0/+110
2016-12-21Add roundeven, roundevenf, roundevenl.Joseph Myers2-0/+178
2016-12-07Fix hypot sNaN handling (bug 20940).Joseph Myers1-0/+2
2016-12-02Fix sysdeps/ieee754 pow handling of sNaN arguments (bug 20916).Joseph Myers1-5/+5
2016-12-02Fix pow (qNaN, 0) result with -lieee (bug 20919), remove dead parts of wrappers.Joseph Myers1-1/+2
2016-11-24Add setpayloadsig, setpayloadsigf, setpayloadsigl.Joseph Myers1-0/+6
2016-11-19Add setpayload, setpayloadf, setpayloadl.Joseph Myers3-0/+128
2016-10-19Add getpayload, getpayloadf, getpayloadl.Joseph Myers2-0/+70
2016-10-17Define HIGH_ORDER_BIT_IS_SET_FOR_SNAN to 0 or 1.Joseph Myers6-6/+12
2016-10-15Add totalordermag, totalordermagf, totalordermagl.Joseph Myers2-0/+94
2016-10-14Fix warnings from latest GCC.steve ellcey-CA Eng-Software1-4/+4
2016-10-12Add totalorder, totalorderf, totalorderl.Joseph Myers2-0/+102
2016-10-06Update comments for some functions in s_sin.cSiddhesh Poyarekar1-22/+17
2016-10-06Adjust calls to do_sincos_1 and do_sincos_2 in s_sincos.cSiddhesh Poyarekar1-4/+4
2016-10-06Make quadrant shift a boolean in reduce_and_compute in s_sin.cSiddhesh Poyarekar1-4/+4
2016-10-06Check n instead of k1 to decide on sign of sin/cos resultSiddhesh Poyarekar1-1/+1
2016-10-06Make the quadrant shift K a bool in do_sincos_* functionsSiddhesh Poyarekar1-19/+19
2016-09-30Use __builtin_fma more in dbl-64 code.Joseph Myers1-0/+4
2016-09-30Use copysign instead of ternary for some sin/cos input rangesSiddhesh Poyarekar1-13/+13
2016-09-30Use copysign instead of ternary conditions for positive constantsSiddhesh Poyarekar1-19/+19
2016-09-30consolidate sign checks for slow2Siddhesh Poyarekar1-8/+10
2016-09-02Inline all support functions for sin and cosSiddhesh Poyarekar1-24/+28
2016-09-02Use do_sin for sin(x) where 0.25 < |x| < 0.855469Siddhesh Poyarekar1-18/+3
2016-09-02Consolidate input partitioning into do_cos and do_sinSiddhesh Poyarekar1-109/+82
2016-08-30Use fabs(x) instead of branching on signedness of input to sin and cosSiddhesh Poyarekar1-148/+85