Lines Matching refs:__atoms
552 static string __stage2_int_prep(ios_base& __iob, _CharT* __atoms, _CharT& __thousands_sep);
553 static string __stage2_float_prep(ios_base& __iob, _CharT* __atoms, _CharT& __decimal_point,
557 unsigned* __g, unsigned*& __g_end, _CharT* __atoms);
562 unsigned*& __g_end, unsigned& __dc, _CharT* __atoms);
567 __num_get<_CharT>::__stage2_int_prep(ios_base& __iob, _CharT* __atoms, _CharT& __thousands_sep)
570 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms);
578 __num_get<_CharT>::__stage2_float_prep(ios_base& __iob, _CharT* __atoms, _CharT& __decimal_point,
582 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms);
593 unsigned* __g, unsigned*& __g_end, _CharT* __atoms)
595 if (__a_end == __a && (__ct == __atoms[24] || __ct == __atoms[25]))
597 *__a_end++ = __ct == __atoms[24] ? '+' : '-';
610 ptrdiff_t __f = find(__atoms, __atoms + 26, __ct) - __atoms;
640 unsigned* __g, unsigned*& __g_end, unsigned& __dc, _CharT* __atoms)
663 ptrdiff_t __f = find(__atoms, __atoms + 32, __ct) - __atoms;
1003 char_type __atoms[26];
1005 string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep);
1025 __atoms))
1053 char_type __atoms[26];
1055 string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep);
1075 __atoms))
1102 char_type __atoms[32];
1105 string __grouping = this->__stage2_float_prep(__iob, __atoms,
1130 __dc, __atoms))
1155 char_type __atoms[26];
1159 __num_get_base::__src + 26, __atoms);
1179 __g, __g_end, __atoms))
3221 char_type __atoms[sizeof(__src)-1];
3222 __ct.widen(__src, __src + (sizeof(__src)-1), __atoms);
3236 *__nc = __src[find(__atoms, _VSTD::end(__atoms), *__w) - __atoms];