Searched refs:cvtbuf (Results 1 - 1 of 1) sorted by relevance

/external/stlport/src/
H A Dnum_put_float.cpp792 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[limit local
[all...]

Completed in 560 milliseconds