| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| 11 // with the distribution. | 11 // with the distribution. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_DTOA_H_ | 28 #ifndef V8_DTOA_H_ |
| 29 #define V8_DTOA_H_ | 29 #define V8_DTOA_H_ |
| 30 | 30 |
| 31 namespace v8 { | 31 namespace v8 { |
| 32 namespace internal { | 32 namespace internal { |
| 33 | 33 |
| 34 template <typename T> class Vector; |
| 35 |
| 34 enum DtoaMode { | 36 enum DtoaMode { |
| 35 // Return the shortest correct representation. | 37 // Return the shortest correct representation. |
| 36 // For example the output of 0.299999999999999988897 is (the less accurate but | 38 // For example the output of 0.299999999999999988897 is (the less accurate but |
| 37 // correct) 0.3. | 39 // correct) 0.3. |
| 38 DTOA_SHORTEST, | 40 DTOA_SHORTEST, |
| 39 // Return a fixed number of digits after the decimal point. | 41 // Return a fixed number of digits after the decimal point. |
| 40 // For instance fixed(0.1, 4) becomes 0.1000 | 42 // For instance fixed(0.1, 4) becomes 0.1000 |
| 41 // If the input number is big, the output will be big. | 43 // If the input number is big, the output will be big. |
| 42 DTOA_FIXED, | 44 DTOA_FIXED, |
| 43 // Return a fixed number of digits, no matter what the exponent is. | 45 // Return a fixed number of digits, no matter what the exponent is. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits | 78 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits |
| 77 // and a terminating null-character. In SHORTEST-mode it expects a buffer of | 79 // and a terminating null-character. In SHORTEST-mode it expects a buffer of |
| 78 // at least kBase10MaximalLength + 1. Otherwise, the size of the output is | 80 // at least kBase10MaximalLength + 1. Otherwise, the size of the output is |
| 79 // limited to requested_digits digits plus the null terminator. | 81 // limited to requested_digits digits plus the null terminator. |
| 80 void DoubleToAscii(double v, DtoaMode mode, int requested_digits, | 82 void DoubleToAscii(double v, DtoaMode mode, int requested_digits, |
| 81 Vector<char> buffer, int* sign, int* length, int* point); | 83 Vector<char> buffer, int* sign, int* length, int* point); |
| 82 | 84 |
| 83 } } // namespace v8::internal | 85 } } // namespace v8::internal |
| 84 | 86 |
| 85 #endif // V8_DTOA_H_ | 87 #endif // V8_DTOA_H_ |
| OLD | NEW |