Home
last modified time | relevance | path

Searched refs:pos_type (Results 1 – 22 of 22) sorted by relevance

/src/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp173 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 Dstd_stream.h38 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 Dstreambuf27 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 Dstrstream48 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
184pos_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 Dsstream27 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
518pos_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 Dfstream24 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 Dsyncstream41 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 Distream25 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 Dostream25 typedef typename traits_type::pos_type pos_type;
68 pos_type tellp();
69 basic_ostream& seekp(pos_type);
H A Dios118 typedef typename traits::pos_type pos_type; // removed in C++17
562 typedef typename traits_type::pos_type pos_type;
H A Dlocale3362 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 Dstring54 using pos_type = streampos;
/src/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h46 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 Dcoex.h336 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 Drtw8821c.c836 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 Dcoex.c1290 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 Drtw8822b.c1125 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 Drtw8821a.c761 u8 pos_type) in rtw8821a_coex_cfg_ant_switch() argument
H A Dmain.h923 u8 ctrl_type, u8 pos_type);
H A Drtw8814a.c1813 u8 pos_type) in rtw8814a_coex_cfg_ant_switch() argument
/src/contrib/kyua/utils/text/
H A Dtemplates.cpp221 std::istream::pos_type position;
229 const std::istream::pos_type position_) : in loop_def()
/src/contrib/llvm-project/libcxx/include/__string/
H A Dchar_traits.h84 using pos_type = streampos;
184 using pos_type = fpos<mbstate_t>;