aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
Commit message (Expand)AuthorAgeFilesLines
* Remove some unused variables.David Schultz2008-08-084-4/+1
* In the lineDavid Schultz2008-08-083-3/+3
* Implement cproj{,f,l}().David Schultz2008-08-076-7/+170
* Use cpack() and the gcc extension __imag__ to implement cimag() andDavid Schultz2008-08-076-6/+18
* Fix some style bogosity from fdlibm.David Schultz2008-08-032-12/+12
* Minor improvements:David Schultz2008-08-033-20/+20
* A few minor corrections, including some from bde:David Schultz2008-08-023-17/+16
* On i386, gcc truncates long double constants to double precisionDavid Schultz2008-08-024-8/+127
* Fix some problems with asinf(), acosf(), atanf(), and atan2f():David Schultz2008-08-014-71/+42
* Add implementations of acosl(), asinl(), atanl(), atan2l(),David Schultz2008-07-3120-69/+900
* Set WARNS=1.David Schultz2008-07-311-0/+1
* The high part of the mantissa is 64 bits on sparc64.David Schultz2008-07-312-2/+2
* As in other parts of libm, mark a few constants as volatile to preventDavid Schultz2008-07-316-12/+20
* Sort the .PATH entries to give a more reasonable order of precedence:David Schultz2008-07-181-4/+5
* Fix a typo in the cosl() prototype.David Schultz2008-06-281-2/+2
* Implement fmodl.David Schultz2008-06-195-25/+177
* Symbol.map is handled by cpp, so use C-style commentsOleksandr Tymoshenko2008-05-031-1/+3
* Add mips support to libm, from mips2-jnpr perforce branch.Warner Losh2008-04-264-0/+259
* Fix some corner cases:David Schultz2008-04-032-10/+20
* Remove a (bogus) remnant of debugging this on sparc64.David Schultz2008-03-311-1/+1
* Add assembly versions of remquol() and remainderl().David Schultz2008-03-306-4/+228
* Hook remquol() and remainderl() up to the build.David Schultz2008-03-304-12/+33
* Implement remainderl() as a wrapper around remquol(). The extra workDavid Schultz2008-03-302-0/+44
* Implement remquol() based on remquo().David Schultz2008-03-302-0/+183
* Implement csqrtl().David Schultz2008-03-305-13/+135
* Hook hypotl() and cabsl() up to the build.David Schultz2008-03-303-6/+7
* Document hypotl().David Schultz2008-03-301-12/+17
* Alias hypotl() and cabsl() for platforms where long double is the sameDavid Schultz2008-03-302-2/+12
* Implement cabsl() in terms of hypotl().David Schultz2008-03-301-0/+20
* Implement hypotl(). This is bde's conversion of fdlibm hypot(), with minorDavid Schultz2008-03-301-0/+139
* Use fabs[f]() instead of bit fiddling for setting absolute values.Bruce Evans2008-03-302-4/+4
* Use the expression fabs(x+0.0)-fabs(y+0.0) instead ofBruce Evans2008-03-302-2/+2
* Fix a missing mask in a hi+lo decomposition. Thus bug made the extraBruce Evans2008-03-301-1/+1
* Include math.h for the fmaf() prototype.David Schultz2008-03-291-0/+2
* Fix some rather obscene code that has ambiguous if...if...else...David Schultz2008-03-296-10/+36
* 1 << 47 needs to be written 1ULL << 47.David Schultz2008-03-021-1/+1
* Hook up sqrtl() to the build.David Schultz2008-03-025-13/+24
* MD implementations of sqrtl().David Schultz2008-03-022-0/+76
* MI implementation of sqrtl(). This is very slow and shouldDavid Schultz2008-03-023-4/+168
* Fix and improve some magic numbers for the "medium size" case.Bruce Evans2008-02-282-4/+4
* Inline __ieee754__rem_pio2f(). On amd64 (A64) and i386 (A64), thisBruce Evans2008-02-254-0/+15
* Use a temporary array instead of the arg array y[] for callingBruce Evans2008-02-252-8/+8
* Change __ieee754_rem_pio2f() to return double instead of float so thatBruce Evans2008-02-255-27/+24
* Fix some off-by-1 errors.Bruce Evans2008-02-253-6/+11
* Let PowerPC world optionally build with -msoft-float. For FPU-less PowerPCRafal Jaworowski2008-02-241-0/+5
* Optimize the 9pi/2 < |x| <= 2**19pi/2 case some more by avoiding anBruce Evans2008-02-232-11/+8
* Avoid using FP-to-integer conversion for !(amd64 || i386) too. Use theBruce Evans2008-02-222-6/+4
* Remove the "quick check no cancellation" optimization forBruce Evans2008-02-221-12/+1
* Optimize the 9pi/2 < |x| <= 2**19pi/2 case on amd64 and i386 by avoidingBruce Evans2008-02-222-0/+18
* Add an irint() function in inline asm for amd64 and i386. irint() isBruce Evans2008-02-221-0/+30