Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
4 * Silicon Graphics Computer Systems, Inc.
9 * This material is provided "as is", with absolutely no warranty expressed
10 * or implied. Any use is at your own risk.
12 * Permission to use or copy this software for any purpose is hereby granted
13 * without fee, provided the above notices are retained on all copies.
14 * Permission to modify the code and to distribute modified code is granted,
15 * provided the above notices are retained, and a notice that the code was
16 * modified is included with the above copyright notice.
20 # include "stlport_prefix.h"
21 #include <stl/_limits.h>
22 #include <stl/_num_get.h>
23 #include <stl/_istream.h>
31 //----------------------------------------------------------------------
36 * __string_to_double is just lifted from atof, the difference being
37 * that we just use '.' for the decimal point, rather than let it
38 * be taken from the current C locale, which of course is not accessible
42 typedef unsigned int uint32;
43 # if defined (_STLP_MSVC) || defined (__BORLANDC__) || defined (__ICL)
44 # define ULL(x) x##Ui64
45 typedef unsigned _STLP_LONG_LONG uint64;
46 # elif defined (_STLP_LONG_LONG)
47 typedef unsigned _STLP_LONG_LONG uint64;
48 # define ULL(x) x##ULL
49 # elif defined(__MRC__) || defined(__SC__) //*TY 02/25/2000 - added support for MPW compilers
50 # include "uint64.h" //*TY 03/25/2000 - added 64bit math type definition
52 # error "there should be some long long type on the system!"
53 # define NUMERIC_NO_64 1
56 // Multiplication of two 64-bit integers, giving a 128-bit result.
57 // Taken from Algorithm M in Knuth section 4.3.1, with the loop
59 void _Stl_mult64(const uint64 u, const uint64 v,
60 uint64& high, uint64& low)
62 const uint64 low_mask = ULL(0xffffffff);
63 const uint64 u0 = u & low_mask;
64 const uint64 u1 = u >> 32;
65 const uint64 v0 = v & low_mask;
66 const uint64 v1 = v >> 32;
71 t = u1 * v0 + (t >> 32);
72 uint64 w1 = t & low_mask;
75 uint64 x = u0 * v1 + w1;
76 low += (x & low_mask) << 32;
77 high = u1 * v1 + w2 + (x >> 32);
80 # define bit11 ULL(0x7ff)
81 # define exponent_mask (bit11 << 52)
83 inline void _Stl_set_exponent(uint64& val, uint64 exp)
85 val = (val & ~exponent_mask) | ((exp & bit11) << 52);
88 /* Power of ten fractions for tenscale*/
89 /* The constants are factored so that at most two constants
90 * and two multiplies are needed. Furthermore, one of the constants
91 * is represented exactly - 10**n where 1<= n <= 27.
94 #if !defined(__SC__) //*TY 03/25/2000 - no native 64bit integer under SCpp
95 static const uint64 _Stl_tenpow[80] = {
96 ULL(0xa000000000000000), /* _Stl_tenpow[0]=(10**1)/(2**4) */
97 ULL(0xc800000000000000), /* _Stl_tenpow[1]=(10**2)/(2**7) */
98 ULL(0xfa00000000000000), /* _Stl_tenpow[2]=(10**3)/(2**10) */
99 ULL(0x9c40000000000000), /* _Stl_tenpow[3]=(10**4)/(2**14) */
100 ULL(0xc350000000000000), /* _Stl_tenpow[4]=(10**5)/(2**17) */
101 ULL(0xf424000000000000), /* _Stl_tenpow[5]=(10**6)/(2**20) */
102 ULL(0x9896800000000000), /* _Stl_tenpow[6]=(10**7)/(2**24) */
103 ULL(0xbebc200000000000), /* _Stl_tenpow[7]=(10**8)/(2**27) */
104 ULL(0xee6b280000000000), /* _Stl_tenpow[8]=(10**9)/(2**30) */
105 ULL(0x9502f90000000000), /* _Stl_tenpow[9]=(10**10)/(2**34) */
106 ULL(0xba43b74000000000), /* _Stl_tenpow[10]=(10**11)/(2**37) */
107 ULL(0xe8d4a51000000000), /* _Stl_tenpow[11]=(10**12)/(2**40) */
108 ULL(0x9184e72a00000000), /* _Stl_tenpow[12]=(10**13)/(2**44) */
109 ULL(0xb5e620f480000000), /* _Stl_tenpow[13]=(10**14)/(2**47) */
110 ULL(0xe35fa931a0000000), /* _Stl_tenpow[14]=(10**15)/(2**50) */
111 ULL(0x8e1bc9bf04000000), /* _Stl_tenpow[15]=(10**16)/(2**54) */
112 ULL(0xb1a2bc2ec5000000), /* _Stl_tenpow[16]=(10**17)/(2**57) */
113 ULL(0xde0b6b3a76400000), /* _Stl_tenpow[17]=(10**18)/(2**60) */
114 ULL(0x8ac7230489e80000), /* _Stl_tenpow[18]=(10**19)/(2**64) */
115 ULL(0xad78ebc5ac620000), /* _Stl_tenpow[19]=(10**20)/(2**67) */
116 ULL(0xd8d726b7177a8000), /* _Stl_tenpow[20]=(10**21)/(2**70) */
117 ULL(0x878678326eac9000), /* _Stl_tenpow[21]=(10**22)/(2**74) */
118 ULL(0xa968163f0a57b400), /* _Stl_tenpow[22]=(10**23)/(2**77) */
119 ULL(0xd3c21bcecceda100), /* _Stl_tenpow[23]=(10**24)/(2**80) */
120 ULL(0x84595161401484a0), /* _Stl_tenpow[24]=(10**25)/(2**84) */
121 ULL(0xa56fa5b99019a5c8), /* _Stl_tenpow[25]=(10**26)/(2**87) */
122 ULL(0xcecb8f27f4200f3a), /* _Stl_tenpow[26]=(10**27)/(2**90) */
124 ULL(0xd0cf4b50cfe20766), /* _Stl_tenpow[27]=(10**55)/(2**183) */
125 ULL(0xd2d80db02aabd62c), /* _Stl_tenpow[28]=(10**83)/(2**276) */
126 ULL(0xd4e5e2cdc1d1ea96), /* _Stl_tenpow[29]=(10**111)/(2**369) */
127 ULL(0xd6f8d7509292d603), /* _Stl_tenpow[30]=(10**139)/(2**462) */
128 ULL(0xd910f7ff28069da4), /* _Stl_tenpow[31]=(10**167)/(2**555) */
129 ULL(0xdb2e51bfe9d0696a), /* _Stl_tenpow[32]=(10**195)/(2**648) */
130 ULL(0xdd50f1996b947519), /* _Stl_tenpow[33]=(10**223)/(2**741) */
131 ULL(0xdf78e4b2bd342cf7), /* _Stl_tenpow[34]=(10**251)/(2**834) */
132 ULL(0xe1a63853bbd26451), /* _Stl_tenpow[35]=(10**279)/(2**927) */
133 ULL(0xe3d8f9e563a198e5), /* _Stl_tenpow[36]=(10**307)/(2**1020) */
135 ULL(0xfd87b5f28300ca0e), /* _Stl_tenpow[37]=(10**-28)/(2**-93) */
136 ULL(0xfb158592be068d2f), /* _Stl_tenpow[38]=(10**-56)/(2**-186) */
137 ULL(0xf8a95fcf88747d94), /* _Stl_tenpow[39]=(10**-84)/(2**-279) */
138 ULL(0xf64335bcf065d37d), /* _Stl_tenpow[40]=(10**-112)/(2**-372) */
139 ULL(0xf3e2f893dec3f126), /* _Stl_tenpow[41]=(10**-140)/(2**-465) */
140 ULL(0xf18899b1bc3f8ca2), /* _Stl_tenpow[42]=(10**-168)/(2**-558) */
141 ULL(0xef340a98172aace5), /* _Stl_tenpow[43]=(10**-196)/(2**-651) */
142 ULL(0xece53cec4a314ebe), /* _Stl_tenpow[44]=(10**-224)/(2**-744) */
143 ULL(0xea9c227723ee8bcb), /* _Stl_tenpow[45]=(10**-252)/(2**-837) */
144 ULL(0xe858ad248f5c22ca), /* _Stl_tenpow[46]=(10**-280)/(2**-930) */
145 ULL(0xe61acf033d1a45df), /* _Stl_tenpow[47]=(10**-308)/(2**-1023) */
146 ULL(0xe3e27a444d8d98b8), /* _Stl_tenpow[48]=(10**-336)/(2**-1116) */
147 ULL(0xe1afa13afbd14d6e) /* _Stl_tenpow[49]=(10**-364)/(2**-1209) */
149 #else //*TY 03/20/2000 - added support for SCpp which lacks native 64bit integer type
150 static const UnsignedWide _Stl_tenpow[80] = {
151 ULL2(0xa0000000,0x00000000), /* _Stl_tenpow[0]=(10**1)/(2**4) */
152 ULL2(0xc8000000,0x00000000), /* _Stl_tenpow[1]=(10**2)/(2**7) */
153 ULL2(0xfa000000,0x00000000), /* _Stl_tenpow[2]=(10**3)/(2**10) */
154 ULL2(0x9c400000,0x00000000), /* _Stl_tenpow[3]=(10**4)/(2**14) */
155 ULL2(0xc3500000,0x00000000), /* _Stl_tenpow[4]=(10**5)/(2**17) */
156 ULL2(0xf4240000,0x00000000), /* _Stl_tenpow[5]=(10**6)/(2**20) */
157 ULL2(0x98968000,0x00000000), /* _Stl_tenpow[6]=(10**7)/(2**24) */
158 ULL2(0xbebc2000,0x00000000), /* _Stl_tenpow[7]=(10**8)/(2**27) */
159 ULL2(0xee6b2800,0x00000000), /* _Stl_tenpow[8]=(10**9)/(2**30) */
160 ULL2(0x9502f900,0x00000000), /* _Stl_tenpow[9]=(10**10)/(2**34) */
161 ULL2(0xba43b740,0x00000000), /* _Stl_tenpow[10]=(10**11)/(2**37) */
162 ULL2(0xe8d4a510,0x00000000), /* _Stl_tenpow[11]=(10**12)/(2**40) */
163 ULL2(0x9184e72a,0x00000000), /* _Stl_tenpow[12]=(10**13)/(2**44) */
164 ULL2(0xb5e620f4,0x80000000), /* _Stl_tenpow[13]=(10**14)/(2**47) */
165 ULL2(0xe35fa931,0xa0000000), /* _Stl_tenpow[14]=(10**15)/(2**50) */
166 ULL2(0x8e1bc9bf,0x04000000), /* _Stl_tenpow[15]=(10**16)/(2**54) */
167 ULL2(0xb1a2bc2e,0xc5000000), /* _Stl_tenpow[16]=(10**17)/(2**57) */
168 ULL2(0xde0b6b3a,0x76400000), /* _Stl_tenpow[17]=(10**18)/(2**60) */
169 ULL2(0x8ac72304,0x89e80000), /* _Stl_tenpow[18]=(10**19)/(2**64) */
170 ULL2(0xad78ebc5,0xac620000), /* _Stl_tenpow[19]=(10**20)/(2**67) */
171 ULL2(0xd8d726b7,0x177a8000), /* _Stl_tenpow[20]=(10**21)/(2**70) */
172 ULL2(0x87867832,0x6eac9000), /* _Stl_tenpow[21]=(10**22)/(2**74) */
173 ULL2(0xa968163f,0x0a57b400), /* _Stl_tenpow[22]=(10**23)/(2**77) */
174 ULL2(0xd3c21bce,0xcceda100), /* _Stl_tenpow[23]=(10**24)/(2**80) */
175 ULL2(0x84595161,0x401484a0), /* _Stl_tenpow[24]=(10**25)/(2**84) */
176 ULL2(0xa56fa5b9,0x9019a5c8), /* _Stl_tenpow[25]=(10**26)/(2**87) */
177 ULL2(0xcecb8f27,0xf4200f3a), /* _Stl_tenpow[26]=(10**27)/(2**90) */
179 ULL2(0xd0cf4b50,0xcfe20766), /* _Stl_tenpow[27]=(10**55)/(2**183) */
180 ULL2(0xd2d80db0,0x2aabd62c), /* _Stl_tenpow[28]=(10**83)/(2**276) */
181 ULL2(0xd4e5e2cd,0xc1d1ea96), /* _Stl_tenpow[29]=(10**111)/(2**369) */
182 ULL2(0xd6f8d750,0x9292d603), /* _Stl_tenpow[30]=(10**139)/(2**462) */
183 ULL2(0xd910f7ff,0x28069da4), /* _Stl_tenpow[31]=(10**167)/(2**555) */
184 ULL2(0xdb2e51bf,0xe9d0696a), /* _Stl_tenpow[32]=(10**195)/(2**648) */
185 ULL2(0xdd50f199,0x6b947519), /* _Stl_tenpow[33]=(10**223)/(2**741) */
186 ULL2(0xdf78e4b2,0xbd342cf7), /* _Stl_tenpow[34]=(10**251)/(2**834) */
187 ULL2(0xe1a63853,0xbbd26451), /* _Stl_tenpow[35]=(10**279)/(2**927) */
188 ULL2(0xe3d8f9e5,0x63a198e5), /* _Stl_tenpow[36]=(10**307)/(2**1020) */
190 ULL2(0xfd87b5f2,0x8300ca0e), /* _Stl_tenpow[37]=(10**-28)/(2**-93) */
191 ULL2(0xfb158592,0xbe068d2f), /* _Stl_tenpow[38]=(10**-56)/(2**-186) */
192 ULL2(0xf8a95fcf,0x88747d94), /* _Stl_tenpow[39]=(10**-84)/(2**-279) */
193 ULL2(0xf64335bc,0xf065d37d), /* _Stl_tenpow[40]=(10**-112)/(2**-372) */
194 ULL2(0xf3e2f893,0xdec3f126), /* _Stl_tenpow[41]=(10**-140)/(2**-465) */
195 ULL2(0xf18899b1,0xbc3f8ca2), /* _Stl_tenpow[42]=(10**-168)/(2**-558) */
196 ULL2(0xef340a98,0x172aace5), /* _Stl_tenpow[43]=(10**-196)/(2**-651) */
197 ULL2(0xece53cec,0x4a314ebe), /* _Stl_tenpow[44]=(10**-224)/(2**-744) */
198 ULL2(0xea9c2277,0x23ee8bcb), /* _Stl_tenpow[45]=(10**-252)/(2**-837) */
199 ULL2(0xe858ad24,0x8f5c22ca), /* _Stl_tenpow[46]=(10**-280)/(2**-930) */
200 ULL2(0xe61acf03,0x3d1a45df), /* _Stl_tenpow[47]=(10**-308)/(2**-1023) */
201 ULL2(0xe3e27a44,0x4d8d98b8), /* _Stl_tenpow[48]=(10**-336)/(2**-1116) */
202 ULL2(0xe1afa13a,0xfbd14d6e) /* _Stl_tenpow[49]=(10**-364)/(2**-1209) */
206 static const short _Stl_twoexp[80] = {
207 4,7,10,14,17,20,24,27,30,34,37,40,44,47,50,54,57,60,64,67,70,74,77,80,84,87,90,
208 183,276,369,462,555,648,741,834,927,1020,
209 -93,-186,-279,-372,-465,-558,-651,-744,-837,-930,-1023,-1116,-1209
212 # define TEN_1 0 /* offset to 10 ** 1 */
213 # define TEN_27 26 /* offset to 10 ** 27 */
214 # define TEN_M28 37 /* offset to 10 ** -28 */
218 # define _Stl_HIBITULL (ULL(1) << 63)
220 void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo)
223 if( ! (prodhi & _Stl_HIBITULL) ) {
224 /* leading bit is a zero
225 * may have to normalize
227 if(( prodhi == ~_Stl_HIBITULL) &&
228 ((prodlo >> 62) == 0x3) ) { /* normalization followed by round
229 * would cause carry to create
230 * extra bit, so don't normalize
235 p = (prodhi<<1) | (prodlo>>63); /* normalize */
243 if( (prodlo & _Stl_HIBITULL) != 0 ) { /* first guard bit a one */ //*TY 03/25/2000 - added explicit comparison to zero to avoid reliance to the implicit conversion from uint64 to bool
244 #if !defined(__SC__) //*TY 03/25/2000 -
245 if( ((p & 0x1) != 0) ||
246 prodlo != _Stl_HIBITULL ) { /* not borderline for round to even */
247 #else //*TY 03/25/2000 - added workaround for SCpp compiler
248 bool b1 = ((p & 0x1) != 0);
249 if( b1 || prodlo != _Stl_HIBITULL ) { //*TY 03/25/2000 - SCpp confuses on this particular original boolean expression
250 #endif //*TY 03/25/2000 -
261 // Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp.
262 // p: 64-bit fraction
263 // exp: base-10 exponent
264 // bexp: base-2 exponent (output parameter)
266 void _Stl_tenscale(uint64& p, int exp, int& bexp)
268 uint64 prodhi, prodlo; /* 128b product */
269 int exp_hi, exp_lo; /* exp = exp_hi*32 + exp_lo */
270 int hi, lo, tlo, thi; /* offsets in power of ten table */
271 int norm; /* number of bits of normalization */
272 int num_hi; /* number of high exponent powers */
275 if(exp > 0) { /* split exponent */
300 else { /* no scaling needed */
303 while(exp_hi) { /* scale */
304 hi = (min) (exp_hi,num_hi); /* only a few large powers of 10 */
305 exp_hi -= hi; /* could iterate in extreme case */
307 _Stl_mult64(p, _Stl_tenpow[hi], prodhi, prodlo);
308 _Stl_norm_and_round(p, norm, prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
312 lo = tlo + exp_lo -1;
313 _Stl_mult64(p, _Stl_tenpow[lo], prodhi, prodlo);
314 _Stl_norm_and_round(p, norm, prodhi, prodlo);
315 bexp += _Stl_twoexp[lo] - norm;
321 // First argument is a buffer of values from 0 to 9, NOT ascii.
322 // Second argument is number of digits in buffer, 1 <= digits <= 17.
323 // Third argument is base-10 exponent.
325 #if defined(__SC__) || defined(__MRC__)
327 //*TY 04/06/2000 - powermac's 68K emulator utilizes apple's SANE floating point, which is not compatible with IEEE format.
330 _STLP_BEGIN_NAMESPACE
331 inline double _Stl_atod(char *buffer, int ndigit, int dexp)
333 decimal d; // ref. inside macintosh powerpc numerics p.9-13
337 d.sig.length = ndigit;
338 for( int i = 0; i < ndigit; ++i )
340 d.sig.text[i] = buffer[i] + '0';
342 return dec2num( &d );
345 #else /* IEEE representation */
348 // turn off optimization here
349 # pragma optimize "off"
352 double _Stl_atod(char *buffer, int ndigit, int dexp)
355 uint64 value; /* Value develops as follows:
356 * 1) decimal digits as an integer
357 * 2) left adjusted fraction
358 * 3) right adjusted fraction
359 * 4) exponent and fraction
362 uint32 guard; /* First guard bit */
363 uint64 rest; /* Remaining guard bits */
365 int bexp; /* binary exponent */
366 int nzero; /* number of non-zero bits */
367 int sexp; /* scaling exponent */
369 char *bufferend; /* pointer to char after last digit */
371 /* Check for zero and treat it as a special case */
377 /* Convert the decimal digits to a binary integer. */
379 bufferend = buffer + ndigit;
382 while( buffer < bufferend ) {
387 /* Check for zero and treat it as a special case */
393 /* Normalize value */
395 bexp = 64; /* convert from 64b int to fraction */
397 /* Count number of non-zeroes in value */
399 if ( (value >> 32) !=0 ){ nzero = 32; } //*TY 03/25/2000 - added explicit comparison to zero to avoid uint64 to bool conversion operator
400 if ( (value >> (16 + nzero)) !=0 ){ nzero += 16; }
401 if ( (value >> ( 8 + nzero)) !=0 ){ nzero += 8; }
402 if ( (value >> ( 4 + nzero)) !=0 ){ nzero += 4; }
403 if ( (value >> ( 2 + nzero)) !=0 ){ nzero += 2; }
404 if ( (value >> ( 1 + nzero)) !=0 ){ nzero += 1; }
405 if ( (value >> ( nzero)) !=0 ){ nzero += 1; }
408 value <<= /*(uint64)*/ (64-nzero); //*TY 03/25/2000 - removed extraneous cast to uint64
411 /* At this point we have a 64b fraction and a binary exponent
412 * but have yet to incorporate the decimal exponent.
415 /* multiply by 10^dexp */
417 _Stl_tenscale(value, dexp, sexp);
420 if (bexp <= -1022) { /* HI denorm or underflow */
422 if( bexp < -53 ) { /* guaranteed underflow */
425 else { /* denorm or possible underflow */
428 lead0 = 12-bexp; /* 12 sign and exponent bits */
430 /* we must special case right shifts of more than 63 */
438 else if ( lead0 == 64 )
440 rest = value & ((ULL(1)<< 63)-1);
442 guard = (uint32) ((value>> 63) & 1 );
444 guard = to_ulong((value>> 63) & 1 ); //*TY 03/25/2000 - use member function instead of problematic conversion operator utilization
450 rest = value & (((ULL(1) << lead0)-1)-1);
452 guard = (uint32) (((value>> lead0)-1) & 1);
453 #else //*TY 03/25/2000 -
454 guard = to_ulong(((value>> lead0)-1) & 1);
455 #endif //*TY 03/25/2000 -
456 value >>= /*(uint64)*/ lead0; /* exponent is zero */
460 if ( guard && ( (value&1) || rest) ) {
462 if( value == (ULL(1) << 52) ) { /* carry created normal number */
464 _Stl_set_exponent(value, 1);
470 else { /* not zero or denorm */
471 /* Round to 53 bits */
473 rest = value & (1<<10)-1;
476 guard = (uint32) value & 1;
477 #else //*TY 03/25/2000 -
478 guard = to_ulong(value & 1);
482 /* value&1 guard rest Action
490 if(((value&1)!=0) || (rest!=0)) {
492 if((value>>53)!=0) { /* carry all the way across */
493 value >>= 1; /* renormalize */
500 * IEEE Double Precision Format
501 * (From Table 7-8 of Kane and Heinrich)
506 * Exponent bias +1023
509 * Total width in bits 64
512 if (bexp > 1024) { /* overflow */
513 return numeric_limits<double>::infinity();
515 else { /* value is normal */
516 value &= ~(ULL(1) << 52); /* hide hidden bit */
517 _Stl_set_exponent(value, bexp + 1022); /* add bias */
521 return *((double *) &value);
526 double _Stl_string_to_double(const char * s) {
527 const int max_digits = 17;
529 unsigned Negate, decimal_point;
534 char digits[max_digits];
536 // Skip leading whitespace, if any.
537 const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
538 while (c = *s++, ct.is(ctype_base::space, char(c)))
557 if (d == digits+max_digits) {
558 /* ignore more than 17 digits, but adjust exponent */
559 exp += (decimal_point ^ 1);
562 if (c == 0 && d == digits) {
563 /* ignore leading zeros */
568 exp -= decimal_point;
571 else if (c == (unsigned int) dpchar && !decimal_point) { /* INTERNATIONAL */
579 /* strtod cant return until it finds the end of the exponent */
583 if (c == 'e'-'0' || c == 'E'-'0') {
584 register unsigned negate_exp = 0;
587 if (c == '+' || c == ' ') {
594 if (c -= '0', c < 10) {
601 while (c -= '0', c < 10);
605 if (e < -340 || e > 340)
615 else if (exp > 308) {
616 x = numeric_limits<double>::infinity();
619 /* let _Stl_atod diagnose under- and over-flows */
620 /* if the input was == 0.0, we have already returned,
621 so retval of +-Inf signals OVERFLOW, 0.0 UNDERFLOW
623 x = _Stl_atod (digits, (int)(d - digits), exp);
632 #ifndef _STLP_NO_LONG_DOUBLE
634 * __string_to_long_double is just lifted from atold, the difference being
635 * that we just use '.' for the decimal point, rather than let it
636 * be taken from the current C locale, which of course is not accessible
641 _Stl_string_to_long_double(const char * s) {
642 const int max_digits = 34;
644 register unsigned Negate, decimal_point;
649 char digits[max_digits];
651 const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
652 while (c = *s++, ct.is(ctype_base::space, char(c)))
673 if (d == digits+max_digits) {
674 /* ignore more than 34 digits, but adjust exponent */
675 exp += (decimal_point ^ 1);
678 if (c == 0 && d == digits) {
679 /* ignore leading zeros */
685 exp -= decimal_point;
688 else if (c == dpchar && !decimal_point) { /* INTERNATIONAL */
700 if (c == 'e'-'0' || c == 'E'-'0') {
701 register unsigned negate_exp = 0;
704 if (c == '+' || c == ' ') {
711 if (c -= '0', c < 10) {
718 while (c -= '0', c < 10);
722 if (e < -(323+max_digits) || e > 308)
730 if (exp < -(324+max_digits)) {
733 else if (exp > 308) {
734 x = numeric_limits<long double>::infinity();
737 /* let _Stl_atod diagnose under- and over-flows */
738 /* if the input was == 0.0, we have already returned,
739 so retval of +-Inf signals OVERFLOW, 0.0 UNDERFLOW
742 // x = _Stl_atod (digits, (int)(d - digits), exp); // TEMPORARY!!:1
743 double tmp = _Stl_atod (digits, (int)(d - digits), exp); // TEMPORARY!!:1
744 x = tmp == numeric_limits<double>::infinity()
745 ? numeric_limits<long double>::infinity()
757 _STLP_EXP_DECLSPEC int _STLP_CALL
758 __string_to_float(const string& v, float& val) {
762 const char *s = v.data();
763 // Skip leading whitespace, if any.
764 const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
765 while (c = *s, ct.is(ctype_base::space, char(c)))
767 int prv_error = errno;
769 val = strtof(s, &endpt);
770 bool __ok = (errno == 0);
775 val = _Stl_string_to_double(v.data());
780 _STLP_EXP_DECLSPEC int _STLP_CALL
781 __string_to_float(const string& v, double& val) {
785 const char *s = v.data();
786 // Skip leading whitespace, if any.
787 const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
788 while (c = *s, ct.is(ctype_base::space, char(c)))
790 int prv_error = errno;
792 val = strtod(s, &endpt);
793 bool __ok = (errno == 0);
797 val = _Stl_string_to_double(v.data());
802 #ifndef _STLP_NO_LONG_DOUBLE
803 _STLP_EXP_DECLSPEC int _STLP_CALL
804 __string_to_float(const string& v, long double& val) {
808 const char *s = v.data();
809 // Skip leading whitespace, if any.
810 const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
811 while (c = *s, ct.is(ctype_base::space, char(c)))
813 int prv_error = errno;
815 val = strtold(s, &endpt);
816 bool __ok = (errno == 0);
820 val = _Stl_string_to_long_double(v.data());