Home
last modified time | relevance | path

Searched refs:fmtbuf (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dnum_put_float.cpp399 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier);
409 char fmtbuf[32]; in _Stl_ecvtR() local
410 __fill_fmtbuf(fmtbuf, 0, 'L'); in _Stl_ecvtR()
411 sprintf(buf, fmtbuf, n, x < 0.0l ? -x : x); in _Stl_ecvtR()
449 char fmtbuf[32]; in _Stl_fcvtR() local
450 __fill_fmtbuf(fmtbuf, ios_base::fixed, 'L'); in _Stl_fcvtR()
451 sprintf(buf, fmtbuf, n, x < 0.0l ? -x : x); in _Stl_fcvtR()
710 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier) { in __fill_fmtbuf() argument
711 fmtbuf[0] = '%'; in __fill_fmtbuf()
715 fmtbuf[i++] = '+'; in __fill_fmtbuf()
[all …]