HomeSort by relevance Sort by last modified time
    Searched refs:cvtbuf (Results 1 - 2 of 2) sorted by null

  /external/stlport/src/
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...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 791 char cvtbuf[limits::max_exponent10 + limits::digits10 + 2 + 1];
805 bp = _Stl_fcvtR(x, (min) (precision, digits10), &decpt, &sign, _STLP_CVT_BUFFER(cvtbuf) );
813 bp = _Stl_ecvtR(x, (min) (precision, digits10), &decpt, &sign, _STLP_CVT_BUFFER(cvtbuf) );
846 char cvtbuf[limits::max_exponent10 + 6]; local
848 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%Lf", __x); // check for 1234.56!
850 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%f", __x); // check for 1234.56!
852 char *p = strchr( cvtbuf, '.' );
854 out.append( cvtbuf );
856 out.append( cvtbuf, p );
859 char cvtbuf[limits::max_exponent10 + 1] local
    [all...]

Completed in 16 milliseconds