| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | streambuf | 26 typedef typename traits_type::int_type int_type; 47 int_type snextc(); 48 int_type sbumpc(); 49 int_type sgetc(); 53 int_type sputbackc(char_type c); 54 int_type sungetc(); 57 int_type sputc(char_type c); 95 virtual int_type underflow(); 96 virtual int_type uflow(); 99 virtual int_type pbackfail(int_type c = traits_type::eof()); [all …]
|
| H A D | strstream | 45 virtual int_type overflow (int_type c = EOF); 46 virtual int_type pbackfail(int_type c = EOF); 47 virtual int_type underflow(); 108 typedef char_traits<char>::int_type int_type; 167 int_type overflow(int_type __c = EOF) override; 168 int_type pbackfail(int_type __c = EOF) override; 169 int_type underflow() override; 237 typedef char_traits<char>::int_type int_type;
|
| H A D | sstream | 26 typedef typename traits_type::int_type int_type; 84 virtual int_type underflow(); 85 virtual int_type pbackfail(int_type c = traits_type::eof()); 86 virtual int_type overflow (int_type c = traits_type::eof()); 110 typedef typename traits_type::int_type int_type; 179 typedef typename traits_type::int_type int_type; 248 typedef typename traits_type::int_type int_type; 341 typedef typename traits_type::int_type int_type; 386 int_type underflow() override; 387 int_type pbackfail(int_type __c = traits_type::eof()) override; [all …]
|
| H A D | istream | 24 typedef typename traits_type::int_type int_type; 62 int_type get(); 72 basic_istream& ignore(streamsize n = 1, int_type delim = traits_type::eof()); 73 int_type peek(); 128 typedef typename traits_type::int_type int_type; 197 typedef typename traits_type::int_type int_type; 259 int_type get(); 262 int_type __ch = get(); 286 basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof()); 287 int_type peek(); [all …]
|
| H A D | fstream | 23 typedef typename traits_type::int_type int_type; 46 virtual int_type underflow(); 47 virtual int_type uflow(); 48 virtual int_type pbackfail(int_type c = traits_type::eof()); 49 virtual int_type overflow (int_type c = traits_type::eof()); 73 typedef typename traits_type::int_type int_type; 112 typedef typename traits_type::int_type int_type; 153 typedef typename traits_type::int_type int_type; 225 typedef typename traits_type::int_type int_type; 257 int_type underflow() override; [all …]
|
| H A D | ios | 117 typedef typename traits::int_type int_type; // removed in C++17 520 _LIBCPP_HIDE_FROM_ABI _FillHelper& operator=(typename _Traits::int_type __x) { 526 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; } 529 typename _Traits::int_type __fill_val_; 536 _LIBCPP_HIDE_FROM_ABI _SentinelValueFill& operator=(typename _Traits::int_type __x) { 541 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; } 544 typename _Traits::int_type __fill_val_; 554 typedef typename traits_type::int_type int_type;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | streambuf | 26 typedef typename traits_type::int_type int_type; 47 int_type snextc(); 48 int_type sbumpc(); 49 int_type sgetc(); 53 int_type sputbackc(char_type c); 54 int_type sungetc(); 57 int_type sputc(char_type c); 95 virtual int_type underflow(); 96 virtual int_type uflow(); 99 virtual int_type pbackfail(int_type c = traits_type::eof()); [all …]
|
| H A D | strstream | 45 virtual int_type overflow (int_type c = EOF); 46 virtual int_type pbackfail(int_type c = EOF); 47 virtual int_type underflow(); 108 typedef char_traits<char>::int_type int_type; 186 int_type overflow(int_type __c = EOF) override; 187 int_type pbackfail(int_type __c = EOF) override; 188 int_type underflow() override; 313 typedef char_traits<char>::int_type int_type;
|
| H A D | istream | 24 typedef typename traits_type::int_type int_type; 62 int_type get(); 72 basic_istream& ignore(streamsize n = 1, int_type delim = traits_type::eof()); 73 int_type peek(); 128 typedef typename traits_type::int_type int_type; 205 typedef typename traits_type::int_type int_type; 267 int_type get(); 270 int_type __ch = get(); 294 basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof()); 295 int_type peek(); [all …]
|
| H A D | sstream | 26 typedef typename traits_type::int_type int_type; 84 virtual int_type underflow(); 85 virtual int_type pbackfail(int_type c = traits_type::eof()); 86 virtual int_type overflow (int_type c = traits_type::eof()); 110 typedef typename traits_type::int_type int_type; 179 typedef typename traits_type::int_type int_type; 248 typedef typename traits_type::int_type int_type; 349 typedef typename traits_type::int_type int_type; 528 int_type underflow() override; 529 int_type pbackfail(int_type __c = traits_type::eof()) override; [all …]
|
| H A D | fstream | 23 typedef typename traits_type::int_type int_type; 46 virtual int_type underflow(); 47 virtual int_type uflow(); 48 virtual int_type pbackfail(int_type c = traits_type::eof()); 49 virtual int_type overflow (int_type c = traits_type::eof()); 73 typedef typename traits_type::int_type int_type; 112 typedef typename traits_type::int_type int_type; 153 typedef typename traits_type::int_type int_type; 233 typedef typename traits_type::int_type int_type; 292 int_type underflow() override; [all …]
|
| H A D | syncstream | 40 using int_type = typename traits::int_type; 85 using int_type = typename traits::int_type; 254 using int_type = typename traits_type::int_type; 337 int_type overflow(int_type __c = traits_type::eof()) override { 445 using int_type = typename traits_type::int_type;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
| H A D | PlatformNetBSD.cpp | 217 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() local 224 CompilerType &pid_type = int_type; in GetSiginfoType() 227 CompilerType &lwpid_type = int_type; in GetSiginfoType() 233 ast->AddFieldToRecordType(sigval_type, "sival_int", int_type, in GetSiginfoType() 260 ast->AddFieldToRecordType(ksiginfo_type, "_signo", int_type, in GetSiginfoType() 262 ast->AddFieldToRecordType(ksiginfo_type, "_code", int_type, in GetSiginfoType() 264 ast->AddFieldToRecordType(ksiginfo_type, "_errno", int_type, in GetSiginfoType() 269 ast->AddFieldToRecordType(ksiginfo_type, "__pad0", int_type, in GetSiginfoType() 294 {"_status", int_type}, in GetSiginfoType() 305 {"_trap", int_type}, in GetSiginfoType() [all...] |
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | std_stream.h | 37 typedef typename traits_type::int_type int_type; typedef 45 virtual int_type underflow(); 46 virtual int_type uflow(); 47 virtual int_type pbackfail(int_type __c = traits_type::eof()); 55 int_type __last_consumed_; 68 int_type __getchar(bool __consume); 93 typename __stdinbuf<_CharT>::int_type __stdinbuf<_CharT>::underflow() { in underflow() 98 typename __stdinbuf<_CharT>::int_type __stdinbuf<_CharT>::uflow() { in uflow() 133 typename __stdinbuf<_CharT>::int_type __stdinbuf<_CharT>::__getchar(bool __consume) { in __getchar() 135 int_type __result = __last_consumed_; in __getchar() [all …]
|
| H A D | strstream.cpp | 105 strstreambuf::int_type strstreambuf::overflow(int_type __c) { in strstreambuf() 107 return int_type(0); 110 return int_type(EOF); in ~strstreambuf() 121 return int_type(EOF); in swap() 142 return int_type(static_cast<unsigned char>(__c)); in str() 145 strstreambuf::int_type strstreambuf::pbackfail(int_type __c) { in str() 150 return int_type(0); in pcount() 164 strstreambuf::int_type strstreambu in overflow() [all...] |
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
| H A D | PlatformFreeBSD.cpp | 198 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() local 204 CompilerType &pid_type = int_type; in GetSiginfoType() 211 ast->AddFieldToRecordType(sigval_type, "sival_int", int_type, in GetSiginfoType() 222 ast->AddFieldToRecordType(siginfo_type, "si_signo", int_type, in GetSiginfoType() 224 ast->AddFieldToRecordType(siginfo_type, "si_errno", int_type, in GetSiginfoType() 226 ast->AddFieldToRecordType(siginfo_type, "si_code", int_type, in GetSiginfoType() 232 ast->AddFieldToRecordType(siginfo_type, "si_status", int_type, in GetSiginfoType() 249 {"_trapno", int_type}, in GetSiginfoType() 257 {"_timerid", int_type}, in GetSiginfoType() 258 {"_overrun", int_type}, in GetSiginfoType() [all...] |
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__string/ |
| H A D | char_traits.h | 81 using int_type = int; 144 static inline _LIBCPP_HIDE_FROM_ABI int_type not_eof(int_type __c) _NOEXCEPT { 147 …static inline _LIBCPP_HIDE_FROM_ABI char_type to_char_type(int_type __c) _NOEXCEPT { return char_t… 148 static inline _LIBCPP_HIDE_FROM_ABI int_type to_int_type(char_type __c) _NOEXCEPT { 149 return int_type((unsigned char)__c); 151 …static inline _LIBCPP_HIDE_FROM_ABI bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT { ret… 152 static inline _LIBCPP_HIDE_FROM_ABI int_type eof() _NOEXCEPT { return int_type(EOF); } 158 using int_type = _IntT; 186 …_LIBCPP_HIDE_FROM_ABI static char_type to_char_type(int_type __c) _NOEXCEPT { return char_type(__c… 188 …_LIBCPP_HIDE_FROM_ABI static int_type to_int_type(char_type __c) _NOEXCEPT { return int_type(__c);… [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__string/ |
| H A D | char_traits.h | 83 using int_type = int; 157 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type not_eof(int_type __c) _NOEXCEPT { 160 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR char_type to_char_type(int_type __c) _NOEXCE… 163 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type to_int_type(char_type __c) _NOEXCEP… 164 return int_type((unsigned char)__c); 166 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c… 169 …static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type eof() _NOEXCEPT { return int_type(E… 175 using int_type = _IntT; 216 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR char_type to_char_type(int_type __c) _NOEXCEPT { 220 …IBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR int_type to_int_type(char_type __c) _NOEXCEPT { retur… [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | wbuffer_convert.h | 37 typedef typename traits_type::int_type int_type; typedef 83 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type underflow(); 84 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type pbackfail(int_type __c = traits_type::eof()); 85 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type overflow(int_type __c = traits_type::eof()); 129 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type wbuffer_convert<_Codecvt, _Elem, _Tr>::und… in underflow() 138 int_type __c = traits_type::eof(); in underflow() 185 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type 186 wbuffer_convert<_Codecvt, _Elem, _Tr>::pbackfail(int_type __c) { in pbackfail() 204 …name wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type wbuffer_convert<_Codecvt, _Elem, _Tr>::overfl… in overflow()
|
| /freebsd/contrib/kyua/utils/process/ |
| H A D | systembuf.hpp | 58 int_type underflow(void); 59 int_type overflow(int);
|
| H A D | systembuf.cpp | 95 systembuf::int_type 124 systembuf::int_type
|
| /freebsd/sys/x86/x86/ |
| H A D | mptable.c | 96 u_char int_type; member 799 switch (intr->int_type) { in mptable_parse_io_int() 836 intr->int_type); in mptable_parse_io_int() 838 if (intr->int_type == INTENTRY_TYPE_INT || in mptable_parse_io_int() 842 if (intr->int_type == INTENTRY_TYPE_INT || in mptable_parse_io_int() 864 switch (intr->int_type) { in mptable_parse_local_int() 886 intr->int_type); in mptable_parse_local_int() 942 entry.int_type = INTENTRY_TYPE_EXTINT; in mptable_parse_default_config_ints() 946 entry.int_type = INTENTRY_TYPE_INT; in mptable_parse_default_config_ints() 951 entry.int_type = INTENTRY_TYPE_INT; in mptable_parse_default_config_ints()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__iterator/ |
| H A D | istreambuf_iterator.h | 39 typedef typename _Traits::int_type int_type; typedef
|
| /freebsd/contrib/ldns/drill/ |
| H A D | drill.c | 132 int int_type; in main() local 179 int_type = -1; serv = NULL; type = 0; in main() 492 if (int_type == -1) { in main() 495 int_type = 0; in main() 499 int_type = 0; in main() 517 int_type = 0; in main() 525 if (int_type == -1) { in main()
|
| /freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | istreambuf_iterator.h | 45 typedef typename _Traits::int_type int_type; typedef
|