| /src/contrib/llvm-project/libcxx/src/ |
| H A D | strstream.cpp | 173 strstreambuf::pos_type strstreambuf::seekoff(off_type __off, ios_base::seekdir __way, ios_base::ope… in seekoff() 180 return pos_type(off_type(-1)); in seekoff() 184 return pos_type(off_type(-1)); in seekoff() 189 return pos_type(off_type(-1)); in seekoff() 191 return pos_type(off_type(-1)); in seekoff() 210 return pos_type(off_type(-1)); in seekoff() 221 return pos_type(newoff); in seekoff() 224 strstreambuf::pos_type strstreambuf::seekpos(pos_type __sp, ios_base::openmode __which) { in seekpos() 228 return pos_type(off_type(-1)); in seekpos() 231 return pos_type(off_type(-1)); in seekpos() [all …]
|
| H A D | std_stream.h | 38 typedef typename traits_type::pos_type pos_type; typedef 246 typedef typename traits_type::pos_type pos_type; typedef
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | streambuf | 27 typedef typename traits_type::pos_type pos_type; 38 pos_type pubseekoff(off_type off, ios_base::seekdir way, 40 pos_type pubseekpos(pos_type sp, 86 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 88 virtual pos_type seekpos(pos_type sp, 137 typedef typename traits_type::pos_type pos_type; 160 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 pos_type 165 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 pos_type 166 pubseekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) { 268 virtual pos_type [all …]
|
| H A D | strstream | 48 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 50 virtual pos_type seekpos(pos_type sp, 109 typedef char_traits<char>::pos_type pos_type; 182 pos_type 184 …pos_type seekpos(pos_type __sp, ios_base::openmode __which = ios_base::in | ios_base::out) overrid… 307 typedef char_traits<char>::pos_type pos_type;
|
| H A D | sstream | 27 typedef typename traits_type::pos_type pos_type; 88 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 90 virtual pos_type seekpos(pos_type sp, 111 typedef typename traits_type::pos_type pos_type; 180 typedef typename traits_type::pos_type pos_type; 249 typedef typename traits_type::pos_type pos_type; 342 typedef typename traits_type::pos_type pos_type; 515 pos_type 518 …pos_type seekpos(pos_type __sp, ios_base::openmode __wch = ios_base::in | ios_base::out) override { 804 typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type basic_stringbuf<_CharT, _Traits, _A… [all …]
|
| H A D | fstream | 24 typedef typename traits_type::pos_type pos_type; 51 virtual pos_type seekoff(off_type off, ios_base::seekdir way, 53 virtual pos_type seekpos(pos_type sp, 74 typedef typename traits_type::pos_type pos_type; 113 typedef typename traits_type::pos_type pos_type; 154 typedef typename traits_type::pos_type pos_type; 231 typedef typename traits_type::pos_type pos_type; 293 pos_type 295 pos_type seekpos(pos_type __sp, ios_base::openmode __wch = ios_base::in | ios_base::out) override; 908 typename basic_filebuf<_CharT, _Traits>::pos_type [all …]
|
| H A D | syncstream | 41 using pos_type = typename traits::pos_type; 84 using pos_type = typename traits::pos_type; 248 using pos_type = typename traits_type::pos_type; 438 using pos_type = typename traits_type::pos_type;
|
| H A D | istream | 25 typedef typename traits_type::pos_type pos_type; 81 pos_type tellg(); 82 basic_istream& seekg(pos_type); 129 typedef typename traits_type::pos_type pos_type; 198 typedef typename traits_type::pos_type pos_type; 295 pos_type tellg(); 296 basic_istream& seekg(pos_type __pos); 1042 typename basic_istream<_CharT, _Traits>::pos_type basic_istream<_CharT, _Traits>::tellg() { 1044 pos_type __r(-1); 1066 basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>::seekg(pos_type __pos) { [all …]
|
| H A D | ostream | 25 typedef typename traits_type::pos_type pos_type; 68 pos_type tellp(); 69 basic_ostream& seekp(pos_type);
|
| H A D | ios | 118 typedef typename traits::pos_type pos_type; // removed in C++17 562 typedef typename traits_type::pos_type pos_type;
|
| H A D | locale | 3362 typedef typename traits_type::pos_type pos_type; 3411 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual pos_type 3413 _LIBCPP_HIDE_FROM_ABI_VIRTUAL virtual pos_type 3414 seekpos(pos_type __sp, ios_base::openmode __wch = ios_base::in | ios_base::out); 3619 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::pos_type 3623 return pos_type(off_type(-1)); 3626 return pos_type(off_type(-1)); 3627 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); 3633 typename wbuffer_convert<_Codecvt, _Elem, _Tr>::pos_type 3634 wbuffer_convert<_Codecvt, _Elem, _Tr>::seekpos(pos_type __sp, ios_base::openmode __wch) { [all …]
|
| H A D | string | 54 using pos_type = streampos;
|
| /src/contrib/llvm-project/libcxx/include/__ostream/ |
| H A D | basic_ostream.h | 46 typedef typename traits_type::pos_type pos_type; typedef 122 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 pos_type tellp(); 123 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 basic_ostream& seekp(pos_type __pos); 696 typename basic_ostream<_CharT, _Traits>::pos_type basic_ostream<_CharT, _Traits>::tellp() { in tellp() 698 return pos_type(-1); in tellp() 703 basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>::seekp(pos_type __pos) { in seekp() 706 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1)) in seekp() 716 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::out) == pos_type(-1)) in seekp()
|
| /src/sys/contrib/dev/rtw88/ |
| H A D | coex.h | 336 void rtw_coex_set_ant_switch(struct rtw_dev *rtwdev, u8 ctrl_type, u8 pos_type) in rtw_coex_set_ant_switch() argument 343 chip->ops->coex_set_ant_switch(rtwdev, ctrl_type, pos_type); in rtw_coex_set_ant_switch()
|
| H A D | rtw8821c.c | 836 u8 pos_type) in rtw8821c_coex_cfg_ant_switch() argument 841 u32 switch_status = FIELD_PREP(CTRL_TYPE_MASK, ctrl_type) | pos_type; in rtw8821c_coex_cfg_ant_switch() 852 pos_type = COEX_SWITCH_TO_WLA; in rtw8821c_coex_cfg_ant_switch() 854 pos_type = COEX_SWITCH_TO_WLG_BT; in rtw8821c_coex_cfg_ant_switch() 874 if (pos_type == COEX_SWITCH_TO_WLG_BT) { in rtw8821c_coex_cfg_ant_switch() 880 } else if (pos_type == COEX_SWITCH_TO_WLG) { in rtw8821c_coex_cfg_ant_switch()
|
| H A D | coex.c | 1290 u8 pos_type = COEX_SWITCH_TO_MAX; in rtw_coex_set_ant_path() local 1315 pos_type = COEX_SWITCH_TO_BT; in rtw_coex_set_ant_path() 1338 pos_type = COEX_SWITCH_TO_BT; in rtw_coex_set_ant_path() 1353 pos_type = COEX_SWITCH_TO_WLG; in rtw_coex_set_ant_path() 1362 pos_type = COEX_SWITCH_TO_NOCARE; in rtw_coex_set_ant_path() 1377 pos_type = COEX_SWITCH_TO_NOCARE; in rtw_coex_set_ant_path() 1393 pos_type = COEX_SWITCH_TO_WLA; in rtw_coex_set_ant_path() 1409 pos_type = COEX_SWITCH_TO_WLG_BT; in rtw_coex_set_ant_path() 1424 pos_type = COEX_SWITCH_TO_WLG_BT; in rtw_coex_set_ant_path() 1431 if (ctrl_type < COEX_SWITCH_CTRL_MAX && pos_type < COEX_SWITCH_TO_MAX && in rtw_coex_set_ant_path() [all …]
|
| H A D | rtw8822b.c | 1125 u8 ctrl_type, u8 pos_type) in rtw8822b_coex_cfg_ant_switch() argument 1133 if (((ctrl_type << 8) + pos_type) == coex_dm->cur_switch_status) in rtw8822b_coex_cfg_ant_switch() 1136 coex_dm->cur_switch_status = (ctrl_type << 8) + pos_type; in rtw8822b_coex_cfg_ant_switch() 1154 if (pos_type == COEX_SWITCH_TO_WLG_BT) { in rtw8822b_coex_cfg_ant_switch() 1160 } else if (pos_type == COEX_SWITCH_TO_WLG) { in rtw8822b_coex_cfg_ant_switch()
|
| H A D | rtw8821a.c | 761 u8 pos_type) in rtw8821a_coex_cfg_ant_switch() argument
|
| H A D | main.h | 923 u8 ctrl_type, u8 pos_type);
|
| H A D | rtw8814a.c | 1813 u8 pos_type) in rtw8814a_coex_cfg_ant_switch() argument
|
| /src/contrib/kyua/utils/text/ |
| H A D | templates.cpp | 221 std::istream::pos_type position; 229 const std::istream::pos_type position_) : in loop_def()
|
| /src/contrib/llvm-project/libcxx/include/__string/ |
| H A D | char_traits.h | 84 using pos_type = streampos; 184 using pos_type = fpos<mbstate_t>;
|