OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_M_pos
(Results
1 - 19
of
19
) sorted by relevancy
/src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
base.h
312
: _M_val(__val),
_M_pos
(__pos) { }
318
++
_M_pos
;
325
{ return _PseudoSequenceIterator(
_M_pos
++); }
337
{ return
_M_pos
== __i2.
_M_pos
; }
341
{ return
_M_pos
!= __i2.
_M_pos
; }
345
{ return
_M_pos
- __i2.
_M_pos
; }
349
_DifferenceType
_M_pos
;
[
all
...]
/src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
base.h
312
: _M_val(__val),
_M_pos
(__pos) { }
318
++
_M_pos
;
325
{ return _PseudoSequenceIterator(
_M_pos
++); }
337
{ return
_M_pos
== __i2.
_M_pos
; }
341
{ return
_M_pos
!= __i2.
_M_pos
; }
345
{ return
_M_pos
- __i2.
_M_pos
; }
349
_DifferenceType
_M_pos
;
[
all
...]
/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/i486/opt/ext/
opt_random.h
102
_M_pos
= 0;
129
&& __lhs.
_M_pos
== __rhs.
_M_pos
);
/src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/i486/opt/ext/
opt_random.h
102
_M_pos
= 0;
129
&& __lhs.
_M_pos
== __rhs.
_M_pos
);
/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/aarch64/opt/ext/
opt_random.h
143
_M_pos
= 0;
165
if (__lhs.
_M_pos
!= __rhs.
_M_pos
)
/src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/aarch64/opt/ext/
opt_random.h
143
_M_pos
= 0;
165
if (__lhs.
_M_pos
!= __rhs.
_M_pos
)
/src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
path.cc
46
_M_pathname.erase(cmpt->
_M_pos
);
84
_M_pathname.erase(back.
_M_pos
+ ext.second);
213
__ret.assign(_M_pathname.substr(__it->
_M_pos
));
463
pos = last.
_M_pos
+ last._M_pathname.size();
/src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
path.cc
46
_M_pathname.erase(cmpt->
_M_pos
);
84
_M_pathname.erase(back.
_M_pos
+ ext.second);
213
__ret.assign(_M_pathname.substr(__it->
_M_pos
));
463
pos = last.
_M_pos
+ last._M_pathname.size();
std-path.cc
51
_M_pathname.erase(cmpt->
_M_pos
);
93
_M_pathname.erase(back.
_M_pos
+ ext.second);
229
__ret.assign(_M_pathname.substr(__it->
_M_pos
));
419
ret._M_pathname.erase(elem->
_M_pos
);
/src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
fs_path.cc
201
: path(__s, __t),
_M_pos
(__pos)
654
c.
_M_pos
+ basepos);
1030
auto pos = it->
_M_pos
+ orig_pathlen;
1058
back.
_M_pos
= orig_pathlen;
1230
std::prev(output)->
_M_pos
= parser.offset(*it);
1263
back.
_M_pos
= orig_pathlen;
1283
_M_pathname.erase(cmpt->
_M_pos
);
1333
_M_pathname.erase(back.
_M_pos
+ ext.second);
1579
__ret.assign(_M_pathname.substr(__it->
_M_pos
));
1593
const auto len = parent->
_M_pos
+ parent->_M_pathname.length()
[
all
...]
/src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
fs_path.cc
200
: path(__s, __t),
_M_pos
(__pos)
640
c.
_M_pos
+ basepos);
1016
auto pos = it->
_M_pos
+ orig_pathlen;
1044
back.
_M_pos
= orig_pathlen;
1216
std::prev(output)->
_M_pos
= parser.offset(*it);
1249
back.
_M_pos
= orig_pathlen;
1269
_M_pathname.erase(cmpt->
_M_pos
);
1319
_M_pathname.erase(back.
_M_pos
+ ext.second);
1565
__ret.assign(_M_pathname.substr(__it->
_M_pos
));
1579
const auto len = parent->
_M_pos
+ parent->_M_pathname.length()
[
all
...]
/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
shared_ptr_base.h
775
size_t
_M_pos
;
777
_Iter& operator++() { ++
_M_pos
; return *this; }
778
_Iter operator++(int) { auto __i(*this); ++
_M_pos
; return __i; }
780
reference operator*() const { return _M_p[
_M_pos
% _M_len]; }
781
pointer operator->() const { return _M_p + (
_M_pos
% _M_len); }
784
{ return
_M_pos
== __i.
_M_pos
; }
790
__last.
_M_pos
= _M_n;
fs_path.h
863
_Cmpt() :
_M_pos
(-1) { }
865
size_t
_M_pos
;
/src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
shared_ptr_base.h
777
size_t
_M_pos
;
779
_Iter& operator++() { ++
_M_pos
; return *this; }
780
_Iter operator++(int) { auto __i(*this); ++
_M_pos
; return __i; }
782
reference operator*() const { return _M_p[
_M_pos
% _M_len]; }
783
pointer operator->() const { return _M_p + (
_M_pos
% _M_len); }
786
{ return
_M_pos
== __i.
_M_pos
; }
792
__last.
_M_pos
= _M_n;
fs_path.h
868
_Cmpt() :
_M_pos
(-1) { }
870
size_t
_M_pos
;
/src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
fs_path.h
726
: path(std::move(__s), __t),
_M_pos
(__pos) { }
728
_Cmpt() :
_M_pos
(-1) { }
730
size_t
_M_pos
;
/src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
fs_path.h
733
: path(std::move(__s), __t),
_M_pos
(__pos) { }
735
_Cmpt() :
_M_pos
(-1) { }
737
size_t
_M_pos
;
/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
ropeimpl.h
1492
_CharT* __ptr = _My_rope::_S_fetch_ptr(__old,
_M_pos
);
1499
_Self_destruct_ptr __left(_My_rope::_S_substring(__old, 0,
_M_pos
));
1500
_Self_destruct_ptr __right(_My_rope::_S_substring(__old,
_M_pos
+ 1,
1523
return _My_rope::_S_fetch(_M_root->_M_tree_ptr,
_M_pos
);
/src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
ropeimpl.h
1490
_CharT* __ptr = _My_rope::_S_fetch_ptr(__old,
_M_pos
);
1497
_Self_destruct_ptr __left(_My_rope::_S_substring(__old, 0,
_M_pos
));
1498
_Self_destruct_ptr __right(_My_rope::_S_substring(__old,
_M_pos
+ 1,
1521
return _My_rope::_S_fetch(_M_root->_M_tree_ptr,
_M_pos
);
Completed in 76 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026