Lines Matching defs:__c

147       to_char_type(const int_type& __c)
148 { return static_cast<char_type>(__c); }
151 to_int_type(const char_type& __c)
152 { return static_cast<int_type>(__c); }
163 not_eof(const int_type& __c)
164 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
291 unsigned char __c;
292 __builtin_memcpy(&__c, __builtin_addressof(__a), 1);
293 __builtin_memset(__s, __c, __n);
451 to_char_type(const int_type& __c) _GLIBCXX_NOEXCEPT
452 { return static_cast<char_type>(__c); }
457 to_int_type(const char_type& __c) _GLIBCXX_NOEXCEPT
458 { return static_cast<int_type>(static_cast<unsigned char>(__c)); }
469 not_eof(const int_type& __c) _GLIBCXX_NOEXCEPT
470 { return (__c == eof()) ? 0 : __c; }
578 to_char_type(const int_type& __c) _GLIBCXX_NOEXCEPT
579 { return char_type(__c); }
582 to_int_type(const char_type& __c) _GLIBCXX_NOEXCEPT
583 { return int_type(__c); }
594 not_eof(const int_type& __c) _GLIBCXX_NOEXCEPT
595 { return eq_int_type(__c, eof()) ? 0 : __c; }
709 to_char_type(const int_type& __c) _GLIBCXX_NOEXCEPT
710 { return char_type(__c); }
713 to_int_type(const char_type& __c) _GLIBCXX_NOEXCEPT
714 { return int_type(__c); }
725 not_eof(const int_type& __c) _GLIBCXX_NOEXCEPT
726 { return eq_int_type(__c, eof()) ? 0 : __c; }
842 to_char_type(const int_type& __c) noexcept
843 { return char_type(__c); }
846 to_int_type(const char_type& __c) noexcept
847 { return __c == eof() ? int_type(0xfffd) : int_type(__c); }
858 not_eof(const int_type& __c) noexcept
859 { return eq_int_type(__c, eof()) ? 0 : __c; }
963 to_char_type(const int_type& __c) noexcept
964 { return char_type(__c); }
967 to_int_type(const char_type& __c) noexcept
968 { return int_type(__c); }
979 not_eof(const int_type& __c) noexcept
980 { return eq_int_type(__c, eof()) ? 0 : __c; }