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

/external/stlport/src/
H A Dnum_put_float.cpp399 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier);
409 char fmtbuf[32]; local
410 __fill_fmtbuf(fmtbuf, 0, 'L');
411 sprintf(buf, fmtbuf, n, x < 0.0l ? -x : x);
449 char fmtbuf[32]; local
450 __fill_fmtbuf(fmtbuf, ios_base::fixed, 'L');
451 sprintf(buf, fmtbuf, n, x < 0.0l ? -x : x);
710 static void __fill_fmtbuf(char* fmtbuf, ios_base::fmtflags flags, char long_modifier) { argument
711 fmtbuf[0] = '%';
715 fmtbuf[
759 char fmtbuf[32]; local
761 snprintf(_STLP_ARRAY_AND_SIZE(static_buf), fmtbuf, precision, x); local
[all...]
/external/llvm/include/llvm/Object/
H A DELFObjectFile.h713 std::string fmtbuf; local
714 raw_string_ostream fmt(fmtbuf);
717 Result.append(fmtbuf.begin(), fmtbuf.end());
724 std::string fmtbuf;
725 raw_string_ostream fmt(fmtbuf);
728 Result.append(fmtbuf.begin(), fmtbuf.end());
735 std::string fmtbuf;
736 raw_string_ostream fmt(fmtbuf);
[all...]
/external/netperf/
H A Dnetlib.c1766 static char fmtbuf[64];
1770 snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f" , number / 1024.0);
1773 snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number / 1024.0 / 1024.0);
1776 snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number / 1024.0 / 1024.0 / 1024.0);
1779 snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number * 8 / 1000.0);
1782 snprintf(fmtbuf, sizeo
1750 static char fmtbuf[64]; local
[all...]
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp118 std::string fmtbuf; local
119 raw_string_ostream fmt(fmtbuf);
279 std::string fmtbuf; local
280 raw_string_ostream fmt(fmtbuf);
330 fmtbuf.clear();
354 fmtbuf.clear();
401 fmtbuf.clear();
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp1016 std::string fmtbuf; local
1017 raw_string_ostream fmt(fmtbuf);
1181 Result.append(fmtbuf.begin(), fmtbuf.end());
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnumtst.c1759 UChar fmtbuf[FORMAT_BUF_CAPACITY]; local
1763 len = unum_formatDouble(formats[1], nanvalue, fmtbuf, FORMAT_BUF_CAPACITY, NULL, &status);
1768 if ( len != 3 || u_strcmp(fmtbuf, nansym) != 0 ) {
/external/icu/icu4c/source/test/cintltst/
H A Dcnumtst.c1762 UChar fmtbuf[FORMAT_BUF_CAPACITY]; local
1766 len = unum_formatDouble(formats[1], nanvalue, fmtbuf, FORMAT_BUF_CAPACITY, NULL, &status);
1771 if ( len != 3 || u_strcmp(fmtbuf, nansym) != 0 ) {

Completed in 151 milliseconds