Searched refs:cvtbuf (Results 1 – 1 of 1) sorted by relevance
/ndk/sources/cxx-stl/stlport/src/ |
D | num_put_float.cpp | 792 char cvtbuf[limits::max_exponent10 + limits::digits10 + 2 + 1]; 806 bp = _Stl_fcvtR(x, (min) (precision, digits10), &decpt, &sign, _STLP_CVT_BUFFER(cvtbuf) ); 814 bp = _Stl_ecvtR(x, (min) (precision, digits10), &decpt, &sign, _STLP_CVT_BUFFER(cvtbuf) ); 847 char cvtbuf[limits::max_exponent10 + 6]; local 849 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%Lf", __x); // check for 1234.56! 851 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%f", __x); // check for 1234.56! 853 char *p = strchr( cvtbuf, '.' ); 855 out.append( cvtbuf ); 857 out.append( cvtbuf, p ); 860 char cvtbuf[limits::max_exponent10 + 1]; local [all …]
|