OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cvtbuf
(Results
1 - 2
of
2
) sorted by null
/prebuilts/ndk/r11/sources/cxx-stl/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
...]
/prebuilts/ndk/r13/sources/cxx-stl/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
...]
Completed in 481 milliseconds