Searched refs:showbase (Results 1 – 12 of 12) sorted by relevance
49 const char *slash, *showbase; in __gmp_doprnt_integer() local67 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()
66 const char *showbase; in __gmp_doprnt_mpf() local317 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()
219 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()
292 static const fmtflags showbase = _S_showbase; in _GLIBCXX_VISIBILITY() local813 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()
184 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()
902 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()
358 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()
188 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()
905 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()
48 const ios_base::fmtflags ios_base::showbase; member in std::ios_base
46 const ios_base::fmtflags ios_base::showbase; member in std::ios_base
3938 int showbase; /* choices above */ member