Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: src/bignum-dtoa.h

Issue 9169057: Include what you use for the preparser. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/bignum.cc ('k') | src/bignum-dtoa.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 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
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_BIGNUM_DTOA_H_ 28 #ifndef V8_BIGNUM_DTOA_H_
29 #define V8_BIGNUM_DTOA_H_ 29 #define V8_BIGNUM_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 BignumDtoaMode { 36 enum BignumDtoaMode {
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 BIGNUM_DTOA_SHORTEST, 40 BIGNUM_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 BIGNUM_DTOA_FIXED, 44 BIGNUM_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 28 matching lines...) Expand all
72 // which case the caller has to fill the missing digits with '0's. 74 // which case the caller has to fill the missing digits with '0's.
73 // Halfway cases are again rounded up. 75 // Halfway cases are again rounded up.
74 // 'BignumDtoa' expects the given buffer to be big enough to hold all digits 76 // 'BignumDtoa' expects the given buffer to be big enough to hold all digits
75 // and a terminating null-character. 77 // and a terminating null-character.
76 void BignumDtoa(double v, BignumDtoaMode mode, int requested_digits, 78 void BignumDtoa(double v, BignumDtoaMode mode, int requested_digits,
77 Vector<char> buffer, int* length, int* point); 79 Vector<char> buffer, int* length, int* point);
78 80
79 } } // namespace v8::internal 81 } } // namespace v8::internal
80 82
81 #endif // V8_BIGNUM_DTOA_H_ 83 #endif // V8_BIGNUM_DTOA_H_
OLDNEW
« no previous file with comments | « src/bignum.cc ('k') | src/bignum-dtoa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698