Home
last modified time | relevance | path

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

/dragonfly/contrib/gmp/printf/
HDdoprnti.c49 const char *slash, *showbase; in __gmp_doprnt_integer() local
67 showbase = NULL; in __gmp_doprnt_integer()
70 if (p->showbase != DOPRNT_SHOWBASE_NO) in __gmp_doprnt_integer()
73 case 16: showbase = "0x"; showbaselen = 2; break; in __gmp_doprnt_integer()
74 case -16: showbase = "0X"; showbaselen = 2; break; in __gmp_doprnt_integer()
75 case 8: showbase = "0"; showbaselen = 1; break; in __gmp_doprnt_integer()
81 || (p->showbase == DOPRNT_SHOWBASE_NONZERO && slash[1] == '0')) in __gmp_doprnt_integer()
84 if (p->showbase == DOPRNT_SHOWBASE_NONZERO && s[0] == '0') in __gmp_doprnt_integer()
103 DOPRNT_MEMORY_MAYBE (showbase, showbaselen); /* base */ in __gmp_doprnt_integer()
119 DOPRNT_MEMORY (showbase, den_showbaselen); in __gmp_doprnt_integer()
HDdoprntf.c66 const char *showbase; in __gmp_doprnt_mpf() local
317 showbase = NULL; in __gmp_doprnt_mpf()
319 switch (p->showbase) { in __gmp_doprnt_mpf()
331 case 16: showbase = "0x"; showbaselen = 2; break; in __gmp_doprnt_mpf()
332 case -16: showbase = "0X"; showbaselen = 2; break; in __gmp_doprnt_mpf()
333 case 8: showbase = "0"; showbaselen = 1; break; in __gmp_doprnt_mpf()
338 showbase == NULL ? "" : showbase, showbaselen)); in __gmp_doprnt_mpf()
358 DOPRNT_MEMORY_MAYBE (showbase, showbaselen); /* base */ in __gmp_doprnt_mpf()
HDdoprnt.c219 param.showbase = DOPRNT_SHOWBASE_NO; in __gmp_doprnt()
252 param.showbase = DOPRNT_SHOWBASE_YES; in __gmp_doprnt()
358 if (param.showbase == DOPRNT_SHOWBASE_NONZERO) in __gmp_doprnt()
519 param.showbase = DOPRNT_SHOWBASE_NONZERO; in __gmp_doprnt()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Dios_base.h292 static const fmtflags showbase = _S_showbase; in _GLIBCXX_VISIBILITY() local
813 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
815 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
823 __base.unsetf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
Dlocale_facets_nonio.tcc184 if (__io.flags() & ios_base::showbase || __sign_size > 1 in _M_extract()
203 && (__j || __io.flags() & ios_base::showbase)) in _M_extract()
488 __len += ((__io.flags() & ios_base::showbase) in _M_insert()
504 if (__io.flags() & ios_base::showbase) in _M_insert()
Dlocale_facets.tcc902 else if (bool(__flags & ios_base::showbase) && __v) in _M_insert_int()
1170 __io.flags((__flags & __fmt) | (ios_base::hex | ios_base::showbase)); in do_put()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Dios_base.h358 static const fmtflags showbase = _S_showbase; in _GLIBCXX_VISIBILITY()
896 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
898 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
906 __base.unsetf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
Dlocale_facets_nonio.tcc188 if (__io.flags() & ios_base::showbase || __sign_size > 1 in _M_extract()
207 && (__j || __io.flags() & ios_base::showbase)) in _M_extract()
494 __len += ((__io.flags() & ios_base::showbase) in _M_insert()
510 if (__io.flags() & ios_base::showbase) in _M_insert()
Dlocale_facets.tcc905 else if (bool(__flags & ios_base::showbase) && __v) in _M_insert_int()
1185 __io.flags((__flags & __fmt) | (ios_base::hex | ios_base::showbase)); in do_put()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/
Dios.cc48 const ios_base::fmtflags ios_base::showbase; member in std::ios_base
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/
Dios.cc46 const ios_base::fmtflags ios_base::showbase; member in std::ios_base
/dragonfly/contrib/gmp/
HDgmp-impl.h3938 int showbase; /* choices above */ member