Home
last modified time | relevance | path

Searched refs:int_type (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__string/
H A Dchar_traits.h85 using int_type = int; member
159 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type not_eof(int_type __c) _NOEXCEPT { in not_eof()
166 return int_type(__c); in to_int_type()
180 using int_type = int;
256 static inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR int_type not_eof(int_type __c) _NOEXCEPT {
277 using int_type = wint_t;
340 return int_type(__c);
399 static inline _LIBCPP_HIDE_FROM_ABI constexpr int_type not_eof(int_type __c) noexcept {
407 static inline _LIBCPP_HIDE_FROM_ABI constexpr int_type eof() noexcept { return int_type(EOF); }
485 return int_type(__c);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstreambuf26 typedef typename traits_type::int_type int_type;
47 int_type snextc();
48 int_type sbumpc();
49 int_type sgetc();
54 int_type sungetc();
99 virtual int_type pbackfail(int_type c = traits_type::eof());
103 virtual int_type overflow (int_type c = traits_type::eof());
133 typedef typename traits_type::int_type int_type;
273 virtual int_type pbackfail(int_type __c = traits_type::eof());
277 virtual int_type overflow(int_type __c = traits_type::eof());
[all …]
H A Dstrstream45 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;
178 int_type overflow(int_type __c = EOF) override;
179 int_type pbackfail(int_type __c = EOF) override;
180 int_type underflow() override;
305 typedef char_traits<char>::int_type int_type;
H A Distream24 typedef typename traits_type::int_type int_type;
62 int_type get();
73 int_type peek();
128 typedef typename traits_type::int_type int_type;
195 typedef typename traits_type::int_type int_type;
257 int_type get();
260 int_type __ch = get();
285 int_type peek();
651 int_type __r = traits_type::eof();
686 int_type __i = this->rdbuf()->sgetc();
[all …]
H A Dsstream26 typedef typename traits_type::int_type int_type;
74 virtual int_type pbackfail(int_type c = traits_type::eof());
75 virtual int_type overflow (int_type c = traits_type::eof());
99 typedef typename traits_type::int_type int_type;
158 typedef typename traits_type::int_type int_type;
217 typedef typename traits_type::int_type int_type;
307 typedef typename traits_type::int_type int_type;
442 int_type overflow(int_type __c = traits_type::eof()) override;
783 typedef typename traits_type::int_type int_type;
889 typedef typename traits_type::int_type int_type;
[all …]
H A Dfstream23 typedef typename traits_type::int_type int_type;
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;
229 typedef typename traits_type::int_type int_type;
287 int_type overflow(int_type __c = traits_type::eof()) override;
1056 typedef typename traits_type::int_type int_type;
1209 typedef typename traits_type::int_type int_type;
[all …]
H A Dsyncstream40 using int_type = typename traits::int_type;
83 using int_type = typename traits::int_type;
245 using int_type = typename traits_type::int_type;
327 int_type overflow(int_type __c = traits_type::eof()) override {
435 using int_type = typename traits_type::int_type;
H A Dios117 typedef typename traits::int_type int_type; // removed in C++17
526 typedef typename traits_type::int_type int_type;
586 mutable int_type __fill_;
H A Dlocale93 typedef typename wide_string::traits_type::int_type int_type;
3119 typedef typename wide_string::traits_type::int_type int_type;
3330 typedef typename traits_type::int_type int_type;
3376 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type underflow();
3377 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type pbackfail(int_type __c = traits_type::eof());
3378 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual int_type overflow(int_type __c = traits_type::eof());
3422 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type wbuffer_convert<_Codecvt, _Elem, _Tr>::und…
3431 int_type __c = traits_type::eof();
3478 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type
3479 wbuffer_convert<_Codecvt, _Elem, _Tr>::pbackfail(int_type __c) {
[all …]
H A Dostream24 typedef typename traits_type::int_type int_type;
213 typedef typename traits_type::int_type int_type;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp217 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()
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()
305 {"_trap", int_type}, in GetSiginfoType()
306 {"_trap2", int_type}, in GetSiginfoType()
316 {"_fd", int_type}, in GetSiginfoType()
324 {"_sysnum", int_type}, in GetSiginfoType()
[all …]
/freebsd/contrib/llvm-project/libcxx/src/
H A Dstd_stream.h37 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);
135 int_type __result = __last_consumed_; in __getchar()
202 typename __stdinbuf<_CharT>::int_type __stdinbuf<_CharT>::pbackfail(int_type __c) { in pbackfail()
245 typedef typename traits_type::int_type int_type; typedef
253 virtual int_type overflow(int_type __c = traits_type::eof());
[all …]
H A Dstrstream.cpp105 strstreambuf::int_type strstreambuf::overflow(int_type __c) { in overflow()
107 return int_type(0); in overflow()
110 return int_type(EOF); in overflow()
121 return int_type(EOF); in overflow()
142 return int_type(static_cast<unsigned char>(__c)); in overflow()
145 strstreambuf::int_type strstreambuf::pbackfail(int_type __c) { in pbackfail()
150 return int_type(0); in pbackfail()
164 strstreambuf::int_type strstreambuf::underflow() { in underflow()
170 return int_type(static_cast<unsigned char>(*gptr())); in underflow()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp198 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/usr.sbin/bhyve/amd64/
H A Dmptbl.c149 mpie->int_type = INTENTRY_TYPE_EXTINT; in mpt_build_localint_entries()
159 mpie->int_type = INTENTRY_TYPE_NMI; in mpt_build_localint_entries()
225 mpie->int_type = INTENTRY_TYPE_INT; in mpt_generate_pci_int()
260 mpie->int_type = INTENTRY_TYPE_EXTINT; in mpt_build_ioint_entries()
264 mpie->int_type = INTENTRY_TYPE_INT; in mpt_build_ioint_entries()
271 mpie->int_type = INTENTRY_TYPE_INT; in mpt_build_ioint_entries()
276 mpie->int_type = INTENTRY_TYPE_INT; in mpt_build_ioint_entries()
/freebsd/contrib/kyua/utils/process/
H A Dsystembuf.hpp58 int_type underflow(void);
59 int_type overflow(int);
H A Dsystembuf.cpp95 systembuf::int_type
124 systembuf::int_type
/freebsd/sys/x86/x86/
H A Dmptable.c102 u_char int_type; member
809 switch (intr->int_type) { in mptable_parse_io_int()
846 intr->int_type); in mptable_parse_io_int()
848 if (intr->int_type == INTENTRY_TYPE_INT || in mptable_parse_io_int()
852 if (intr->int_type == INTENTRY_TYPE_INT || in mptable_parse_io_int()
874 switch (intr->int_type) { in mptable_parse_local_int()
896 intr->int_type); in mptable_parse_local_int()
952 entry.int_type = INTENTRY_TYPE_EXTINT; in mptable_parse_default_config_ints()
956 entry.int_type = INTENTRY_TYPE_INT; in mptable_parse_default_config_ints()
961 entry.int_type = INTENTRY_TYPE_INT; in mptable_parse_default_config_ints()
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Distreambuf_iterator.h43 typedef typename _Traits::int_type int_type; typedef
/freebsd/contrib/ldns/drill/
H A Ddrill.c132 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/sys/x86/include/
H A Dmptable.h118 uint8_t int_type; member
/freebsd/sys/dev/vnic/
H A Dnicvf_queues.c2047 nicvf_enable_intr(struct nicvf *nic, int int_type, int q_idx) in nicvf_enable_intr() argument
2053 switch (int_type) { in nicvf_enable_intr()
2086 nicvf_disable_intr(struct nicvf *nic, int int_type, int q_idx) in nicvf_disable_intr() argument
2090 switch (int_type) { in nicvf_disable_intr()
2123 nicvf_clear_intr(struct nicvf *nic, int int_type, int q_idx) in nicvf_clear_intr() argument
2127 switch (int_type) { in nicvf_clear_intr()
2160 nicvf_is_intr_enabled(struct nicvf *nic, int int_type, int q_idx) in nicvf_is_intr_enabled() argument
2167 switch (int_type) { in nicvf_is_intr_enabled()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dtime_utils.h108 using int_type = decltype(std::declval<TimeVal>().tv_usec);
110 return static_cast<int_type>(dur);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h95 const lldb_private::CompilerType &int_type,
/freebsd/usr.sbin/mptable/
H A Dmptable.c835 printf( "\t\t%s", intTypes[ entry->int_type ] ); in intEntry()

12