Searched refs:int_type (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h57 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf
67 int_type _M_unget_buf;
86 int_type
89 int_type
90 syncungetc(int_type __c);
92 int_type
93 syncputc(int_type __c);
95 virtual int_type
98 int_type __
[all...]
H A Dpod_char_traits.h45 // NB: The char_type parameter is a subset of int_type, as to allow
46 // int_type to properly hold the full range of char_type values as
53 typedef I int_type; typedef in struct:character
96 typedef typename char_type::int_type int_type; typedef in struct:char_traits
162 to_char_type(const int_type& __i)
165 static int_type
167 { return char_type::template to<int_type>(__c); }
170 eq_int_type(const int_type& __c1, const int_type
[all...]
H A Dstdio_filebuf.h58 typedef typename traits_type::int_type int_type; typedef in class:stdio_filebuf
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dchar_traits.h55 * of char_traits. It defines int_type, off_type, pos_type, and
64 typedef unsigned long int_type; typedef in struct:_Char_types
76 * right, but the int_type and state_type typedefs, and the eof()
90 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits
126 to_char_type(const int_type& __c)
129 static int_type
131 { return static_cast<int_type>(__c); }
134 eq_int_type(const int_type& __c1, const int_type
235 typedef int int_type; typedef in struct:char_traits
305 typedef wint_t int_type; typedef in struct:char_traits
[all...]
H A Dstreambuf_iterator.h59 typedef typename _Traits::int_type int_type; typedef in class:istreambuf_iterator
91 mutable int_type _M_c;
167 int_type
170 const int_type __eof = traits_type::eof();
171 int_type __ret = __eof;
188 const int_type __eof = traits_type::eof();
331 typedef typename traits_type::int_type int_type; typedef
336 int_type __
366 typedef typename traits_type::int_type int_type; typedef
[all...]
H A Dbasic_ios.h66 typedef typename _Traits::int_type int_type; typedef in class:basic_ios
H A Dostream_insert.h67 const typename _Traits::int_type __put = __out.rdbuf()->sputc(__c);
/freebsd-11-stable/contrib/libreadline/examples/
H A Dreadlinebuf.h50 typedef int int_type; typedef in class:readlinebuf
54 static const int_type eof = EOF; // this is -1
55 static const int_type not_eof = 0;
66 virtual int_type showmanyc() const { return high_ - low_; }
87 virtual int_type underflow() {
102 virtual int_type uflow() {
103 int_type c = underflow();
108 virtual int_type pbackfail( int_type c = eof ) {
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_streambuf.h135 typedef typename traits_type::int_type int_type; typedef in class:basic_streambuf
294 int_type
297 int_type __ret = traits_type::eof();
312 int_type
315 int_type __ret;
334 int_type
337 int_type __ret;
367 int_type
370 int_type __re
[all...]
H A Dstd_fstream.h75 typedef typename traits_type::int_type int_type; typedef in class:basic_filebuf
318 virtual int_type
321 virtual int_type
322 pbackfail(int_type __c = _Traits::eof());
331 virtual int_type
332 overflow(int_type __c = _Traits::eof());
430 typedef typename traits_type::int_type int_type; typedef in class:basic_ifstream
558 typedef typename traits_type::int_type int_typ typedef in class:basic_ofstream
689 typedef typename traits_type::int_type int_type; typedef in class:basic_fstream
[all...]
H A Dstd_sstream.h71 typedef typename traits_type::int_type int_type; typedef in class:basic_stringbuf
183 virtual int_type
186 virtual int_type
187 pbackfail(int_type __c = traits_type::eof());
189 virtual int_type
190 overflow(int_type __c = traits_type::eof());
272 typedef typename traits_type::int_type int_type; typedef in class:basic_istringstream
385 typedef typename traits_type::int_type int_typ typedef in class:basic_ostringstream
498 typedef typename traits_type::int_type int_type; typedef in class:basic_stringstream
[all...]
H A Dstd_istream.h63 typedef typename _Traits::int_type int_type; typedef in class:basic_istream
291 int_type
447 ignore(streamsize __n, int_type __delim);
457 int_type
615 ignore(streamsize __n, int_type __delim);
631 ignore(streamsize __n, int_type __delim);
654 typedef typename _Traits::int_type __int_type;
785 typedef typename _Traits::int_type int_type; typedef in class:basic_iostream
[all...]
H A Dstd_ostream.h64 typedef typename _Traits::int_type int_type; typedef in class:basic_ostream
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp152 strstreambuf::int_type
153 strstreambuf::overflow(int_type __c)
156 return int_type(0);
160 return int_type(EOF);
171 return int_type(EOF);
193 return int_type(static_cast<unsigned char>(__c));
196 strstreambuf::int_type
197 strstreambuf::pbackfail(int_type __c)
204 return int_type(0);
220 strstreambuf::int_type
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dmptbl.c153 mpie->int_type = INTENTRY_TYPE_EXTINT;
163 mpie->int_type = INTENTRY_TYPE_NMI;
229 mpie->int_type = INTENTRY_TYPE_INT;
264 mpie->int_type = INTENTRY_TYPE_EXTINT;
268 mpie->int_type = INTENTRY_TYPE_INT;
275 mpie->int_type = INTENTRY_TYPE_INT;
280 mpie->int_type = INTENTRY_TYPE_INT;
/freebsd-11-stable/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc120 typedef char_traits<char>::int_type int_type; typedef
123 if (__p && static_cast<int_type>(__p) != char_traits<char>::eof()
/freebsd-11-stable/contrib/libstdc++/src/
H A Distream.cc50 const int_type __idelim = traits_type::to_int_type(__delim);
51 const int_type __eof = traits_type::eof();
53 int_type __c = __sb->sgetc();
111 ignore(streamsize __n, int_type __delim)
124 const int_type __eof = traits_type::eof();
126 int_type __c = __sb->sgetc();
191 typedef __istream_type::int_type __int_type;
267 typedef __istream_type::int_type __int_type;
343 typedef __istream_type::int_type __int_type;
430 const int_type __ideli
[all...]
H A Dstreambuf.cc46 traits_type::int_type __c = __sbin->sgetc();
86 traits_type::int_type __c = __sbin->sgetc();
H A Dstrstream.cc141 strstreambuf::int_type
142 strstreambuf::overflow(int_type c)
187 strstreambuf::int_type
188 strstreambuf::pbackfail(int_type c)
212 strstreambuf::int_type
H A Dcompatibility.cc73 const int_type __eof = traits_type::eof();
75 int_type __c = __sb->sgetc();
139 const int_type __eof = traits_type::eof();
141 int_type __c = __sb->sgetc();
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-gpio-defs.h205 uint64_t int_type : 1; /**< Type of interrupt member in struct:cvmx_gpio_bit_cfgx::cvmx_gpio_bit_cfgx_s
215 uint64_t int_type : 1;
229 uint64_t int_type : 1; /**< Type of interrupt member in struct:cvmx_gpio_bit_cfgx::cvmx_gpio_bit_cfgx_cn30xx
239 uint64_t int_type : 1;
256 uint64_t int_type : 1; /**< Type of interrupt member in struct:cvmx_gpio_bit_cfgx::cvmx_gpio_bit_cfgx_cn52xx
266 uint64_t int_type : 1;
798 uint64_t int_type : 1; /**< Type of interrupt member in struct:cvmx_gpio_xbit_cfgx::cvmx_gpio_xbit_cfgx_s
808 uint64_t int_type : 1;
H A Dcvmx-gpio.h83 if (multi_cast.s.en && gpio_bit.s.int_en && gpio_bit.s.int_type)
/freebsd-11-stable/sys/x86/x86/
H A Dmptable.c103 u_char int_type; member in struct:INTDATA
734 switch (intr->int_type) {
771 intr->int_type);
773 if (intr->int_type == INTENTRY_TYPE_INT ||
777 if (intr->int_type == INTENTRY_TYPE_INT ||
799 switch (intr->int_type) {
821 intr->int_type);
877 entry.int_type = INTENTRY_TYPE_EXTINT;
881 entry.int_type = INTENTRY_TYPE_INT;
886 entry.int_type
[all...]
/freebsd-11-stable/contrib/ldns/drill/
H A Ddrill.c122 int int_type; local
161 int_type = -1; serv = NULL; type = 0;
451 if (int_type == -1) {
454 int_type = 0;
472 int_type = 0;
480 if (int_type == -1) {
/freebsd-11-stable/sys/mips/cavium/
H A Docteon_gpio.c329 if (gpio_cfgx.s.int_type == OCTEON_GPIO_IRQ_EDGE)
437 gpio_cfgx.s.int_type = OCTEON_GPIO_IRQ_EDGE;
446 gpio_cfgx.s.int_en, gpio_cfgx.s.int_type ? "rising edge" : "level");

Completed in 304 milliseconds

12