| OLD | NEW |
| 1 // The following is adapted from fdlibm (http://www.netlib.org/fdlibm). | 1 // The following is adapted from fdlibm (http://www.netlib.org/fdlibm). |
| 2 // | 2 // |
| 3 // ==================================================== | 3 // ==================================================== |
| 4 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. | 4 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5 // | 5 // |
| 6 // Developed at SunSoft, a Sun Microsystems, Inc. business. | 6 // Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 7 // Permission to use, copy, modify, and distribute this | 7 // Permission to use, copy, modify, and distribute this |
| 8 // software is freely granted, provided that this notice | 8 // software is freely granted, provided that this notice |
| 9 // is preserved. | 9 // is preserved. |
| 10 // ==================================================== | 10 // ==================================================== |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 int rempio2(double x, double* y); | 22 int rempio2(double x, double* y); |
| 23 | 23 |
| 24 // Constants to be exposed to builtins via Float64Array. | 24 // Constants to be exposed to builtins via Float64Array. |
| 25 struct MathConstants { | 25 struct MathConstants { |
| 26 static const double constants[53]; | 26 static const double constants[53]; |
| 27 }; | 27 }; |
| 28 } | 28 } |
| 29 } // namespace v8::internal | 29 } // namespace v8::internal |
| 30 | 30 |
| 31 #endif // V8_FDLIBM_H_ | 31 #endif // V8_FDLIBM_H_ |
| OLD | NEW |