| /src/external/bsd/kyua-cli/dist/utils/process/ |
| systembuf.hpp | 56 int_type underflow(void); 57 int_type overflow(int);
|
| systembuf.cpp | 94 systembuf::int_type 123 systembuf::int_type
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| stdio_sync_filebuf.h | 62 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf 74 int_type _M_unget_buf; 120 int_type 123 int_type 124 syncungetc(int_type __c); 126 int_type 127 syncputc(int_type __c); 129 virtual int_type 132 int_type __c = this->syncgetc() [all...] |
| pod_char_traits.h | 44 // NB: The char_type parameter is a subset of int_type, as to allow 45 // int_type to properly hold the full range of char_type values as 52 typedef _Int int_type; typedef in struct:character 100 typedef typename char_type::int_type int_type; typedef in struct:char_traits 170 to_char_type(const int_type& __i) 173 static int_type 175 { return char_type::template to<int_type>(__c); } 178 eq_int_type(const int_type& __c1, const int_type& __c2 [all...] |
| stdio_filebuf.h | 56 typedef typename traits_type::int_type int_type; typedef in class:stdio_filebuf
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| char_traits.h | 66 * of char_traits. It defines int_type, off_type, pos_type, and 75 typedef unsigned long int_type; typedef in struct:_Char_types 87 * right, but the int_type and state_type typedefs, and the eof() 101 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits 147 to_char_type(const int_type& __c) 150 static _GLIBCXX_CONSTEXPR int_type 152 { return static_cast<int_type>(__c); } 155 eq_int_type(const int_type& __c1, const int_type& __c2 332 typedef int int_type; typedef in struct:char_traits 470 typedef wint_t int_type; typedef in struct:char_traits 598 typedef unsigned int int_type; typedef in struct:char_traits 736 typedef uint_least16_t int_type; typedef in struct:char_traits 738 typedef __UINT_LEAST16_TYPE__ int_type; typedef in struct:char_traits 740 typedef make_unsigned<char16_t>::type int_type; typedef in struct:char_traits 857 typedef uint_least32_t int_type; typedef in struct:char_traits 859 typedef __UINT_LEAST32_TYPE__ int_type; typedef in struct:char_traits 861 typedef make_unsigned<char32_t>::type int_type; typedef in struct:char_traits [all...] |
| streambuf_iterator.h | 71 typedef typename _Traits::int_type int_type; typedef in class:istreambuf_iterator 113 int_type _M_c; 151 int_type __c = _M_get(); 202 int_type 205 int_type __ret = _M_c; 216 _S_is_eof(int_type __c) 218 const int_type __eof = traits_type::eof(); 385 typedef typename traits_type::int_type int_type; typedef 440 typedef typename traits_type::int_type int_type; typedef 487 typedef typename traits_type::int_type int_type; typedef [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/ |
| tut02-square.c | 35 gcc_jit_type *int_type = local 38 gcc_jit_context_new_param (ctxt, NULL, int_type, "i"); 42 int_type, 52 GCC_JIT_BINARY_OP_MULT, int_type,
|
| tut02-square.cc | 35 gccjit::type int_type = ctxt.get_type (GCC_JIT_TYPE_INT); local 36 gccjit::param param_i = ctxt.new_param (int_type, "i"); 40 int_type, 47 ctxt.new_binary_op (GCC_JIT_BINARY_OP_MULT, int_type,
|
| tut05-bf.c | 19 gcc_jit_type *int_type = local 22 gcc_jit_context_new_param (ctxt, NULL, int_type, "argc"); 33 int_type, 51 gcc_jit_type *int_type; member in struct:bf_compiler 130 bfc->int_type, 195 bfc->int_type); 338 bfc.int_type = 351 bfc.int_type, 357 gcc_jit_context_new_param (bfc.ctxt, NULL, bfc.int_type, "c"); 369 bfc.int_zero = gcc_jit_context_zero (bfc.ctxt, bfc.int_type); [all...] |
| /src/external/apache2/llvm/dist/libcxx/src/ |
| strstream.cpp | 152 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...] |
| /src/external/bsd/atf/dist/tools/ |
| io.hpp | 316 virtual int_type underflow(void); 334 virtual int_type overflow(int c);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
| istream.cc | 47 const int_type __idelim = traits_type::to_int_type(__delim); 48 const int_type __eof = traits_type::eof(); 50 int_type __c = __sb->sgetc(); 113 ignore(streamsize __n, int_type __delim) 116 // If conversion to int_type changes the value then __delim does not 119 const int_type chk_delim = traits_type::to_int_type(__delim); 135 const int_type __eof = traits_type::eof(); 137 int_type __c = __sb->sgetc(); 220 typedef __istream_type::int_type __int_type; 309 const int_type __idelim = traits_type::to_int_type(__delim) [all...] |
| streambuf.cc | 43 traits_type::int_type __c = __sbin->sgetc(); 83 traits_type::int_type __c = __sbin->sgetc();
|
| strstream.cc | 138 strstreambuf::int_type 139 strstreambuf::overflow(int_type c) 184 strstreambuf::int_type 185 strstreambuf::pbackfail(int_type c) 209 strstreambuf::int_type
|
| /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/tut04-toyvm/ |
| toyvm.c | 388 gcc_jit_type *int_type; member in struct:compilation_state 507 state.int_type = 513 state.int_type, MAX_STACK_DEPTH); 516 state.const_one = gcc_jit_context_one (state.ctxt, state.int_type); 532 state.int_type, "arg"); 537 state.int_type, 547 state.int_type, "stack_depth"); 550 state.int_type, "x"); 553 state.int_type, "y"); 576 gcc_jit_context_zero (state.ctxt, state.int_type)); [all...] |
| toyvm.cc | 474 gccjit::type int_type; 583 int_type = ctxt.get_type (GCC_JIT_TYPE_INT); 585 stack_type = ctxt.new_array_type (int_type, MAX_STACK_DEPTH); 588 const_one = ctxt.one (int_type); 613 param_arg = ctxt.new_param (int_type, "arg", op_locs[0]); 616 int_type, 623 stack_depth = fn.new_local (int_type, "stack_depth"); 624 x = fn.new_local (int_type, "x"); 625 y = fn.new_local (int_type, "y"); 645 ctxt.zero (int_type), [all...] |
| /src/common/dist/zlib/contrib/iostream3/ |
| zfstream.h | 112 virtual int_type 124 virtual int_type 125 overflow(int_type c = traits_type::eof()); 151 // virtual int_type uflow(); 152 // virtual int_type pbackfail(int_type c = traits_type::eof());
|
| /src/external/gpl3/binutils/dist/zlib/contrib/iostream3/ |
| zfstream.h | 112 virtual int_type 124 virtual int_type 125 overflow(int_type c = traits_type::eof()); 151 // virtual int_type uflow(); 152 // virtual int_type pbackfail(int_type c = traits_type::eof());
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/iostream3/ |
| zfstream.h | 112 virtual int_type 124 virtual int_type 125 overflow(int_type c = traits_type::eof()); 151 // virtual int_type uflow(); 152 // virtual int_type pbackfail(int_type c = traits_type::eof());
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/ |
| c_locale.cc | 210 typedef char_traits<char>::int_type int_type; 213 if (!__p || static_cast<int_type>(__p) == char_traits<char>::eof())
|
| /src/external/gpl3/binutils/dist/include/ |
| gcc-c-fe.def | 132 Deprecated in v1, use int_type instead. */ 208 GCC_METHOD3 (gcc_type, int_type, 214 'unsigned char' returned by int_type. */
|
| /src/external/gpl3/binutils.old/dist/include/ |
| gcc-c-fe.def | 132 Deprecated in v1, use int_type instead. */ 208 GCC_METHOD3 (gcc_type, int_type, 214 'unsigned char' returned by int_type. */
|
| /src/external/gpl3/gcc.old/dist/include/ |
| gcc-c-fe.def | 129 Deprecated in v1, use int_type instead. */ 205 GCC_METHOD3 (gcc_type, int_type, 211 'unsigned char' returned by int_type. */
|
| /src/sys/arch/x86/include/ |
| mpbiosreg.h | 118 uint8_t int_type; member in struct:mpbios_int
|