Lines Matching refs:size_t

53 #include <cstddef>     // For size_t
77 template<size_t _Nw>
94 static size_t
95 _S_whichword(size_t __pos )
98 static size_t
99 _S_whichbyte(size_t __pos )
102 static size_t
103 _S_whichbit(size_t __pos )
107 _S_maskbit(size_t __pos )
111 _M_getword(size_t __pos)
115 _M_getword(size_t __pos) const
129 for (size_t __i = 0; __i < _Nw; __i++)
136 for (size_t __i = 0; __i < _Nw; __i++)
143 for (size_t __i = 0; __i < _Nw; __i++)
148 _M_do_left_shift(size_t __shift);
151 _M_do_right_shift(size_t __shift);
156 for (size_t __i = 0; __i < _Nw; __i++)
163 for (size_t __i = 0; __i < _Nw; __i++)
174 for (size_t __i = 0; __i < _Nw; ++__i)
185 for (size_t __i = 0; __i < _Nw; __i++)
193 size_t
196 size_t __result = 0;
197 for (size_t __i = 0; __i < _Nw; __i++)
206 size_t
207 _M_do_find_first(size_t __not_found) const;
210 size_t
211 _M_do_find_next(size_t __prev, size_t __not_found) const;
215 template<size_t _Nw>
217 _Base_bitset<_Nw>::_M_do_left_shift(size_t __shift)
221 const size_t __wshift = __shift / _GLIBCXX_BITSET_BITS_PER_WORD;
222 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD;
225 for (size_t __n = _Nw - 1; __n >= __wshift; --__n)
229 const size_t __sub_offset = (_GLIBCXX_BITSET_BITS_PER_WORD
231 for (size_t __n = _Nw - 1; __n > __wshift; --__n)
241 template<size_t _Nw>
243 _Base_bitset<_Nw>::_M_do_right_shift(size_t __shift)
247 const size_t __wshift = __shift / _GLIBCXX_BITSET_BITS_PER_WORD;
248 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD;
249 const size_t __limit = _Nw - __wshift - 1;
252 for (size_t __n = 0; __n <= __limit; ++__n)
256 const size_t __sub_offset = (_GLIBCXX_BITSET_BITS_PER_WORD
258 for (size_t __n = 0; __n < __limit; ++__n)
268 template<size_t _Nw>
272 for (size_t __i = 1; __i < _Nw; ++__i)
278 template<size_t _Nw>
279 size_t
280 _Base_bitset<_Nw>::_M_do_find_first(size_t __not_found) const
282 for (size_t __i = 0; __i < _Nw; __i++)
293 template<size_t _Nw>
294 size_t
295 _Base_bitset<_Nw>::_M_do_find_next(size_t __prev, size_t __not_found) const
305 size_t __i = _S_whichword(__prev);
349 static size_t
350 _S_whichword(size_t __pos )
353 static size_t
354 _S_whichbyte(size_t __pos )
357 static size_t
358 _S_whichbit(size_t __pos )
362 _S_maskbit(size_t __pos )
366 _M_getword(size_t)
370 _M_getword(size_t) const
394 _M_do_left_shift(size_t __shift)
398 _M_do_right_shift(size_t __shift)
421 size_t
429 size_t
430 _M_do_find_first(size_t __not_found) const
439 size_t
440 _M_do_find_next(size_t __prev, size_t __not_found) const
443 if (__prev >= ((size_t) _GLIBCXX_BITSET_BITS_PER_WORD))
472 static size_t
473 _S_whichword(size_t __pos )
476 static size_t
477 _S_whichbyte(size_t __pos )
480 static size_t
481 _S_whichbit(size_t __pos )
485 _S_maskbit(size_t __pos )
496 _M_getword(size_t) const
519 _M_do_left_shift(size_t)
523 _M_do_right_shift(size_t)
549 size_t
559 size_t
560 _M_do_find_first(size_t) const
563 size_t
564 _M_do_find_next(size_t, size_t) const
570 template<size_t _Extrabits>
645 template<size_t _Nb>
678 size_t _M_bpos;
684 reference(bitset& __b, size_t __pos)
756 size_t __position = 0)
777 size_t __position, size_t __n)
824 operator<<=(size_t __position)
837 operator>>=(size_t __position)
857 _Unchecked_set(size_t __pos)
864 _Unchecked_set(size_t __pos, int __val)
874 _Unchecked_reset(size_t __pos)
881 _Unchecked_flip(size_t __pos)
888 _Unchecked_test(size_t __pos) const
912 set(size_t __position, bool __val = true)
937 reset(size_t __position)
961 flip(size_t __position)
991 operator[](size_t __position)
995 operator[](size_t __position) const
1054 size_t, size_t);
1061 size_t
1066 size_t
1088 test(size_t __position) const
1114 operator<<(size_t __position) const
1118 operator>>(size_t __position) const
1128 size_t
1139 size_t
1140 _Find_next(size_t __prev ) const
1145 template<size_t _Nb>
1150 _Alloc>& __s, size_t __pos, size_t __n)
1153 const size_t __nbits = std::min(_Nb, std::min(__n, __s.size() - __pos));
1154 for (size_t __i = __nbits; __i > 0; --__i)
1169 template<size_t _Nb>
1176 for (size_t __i = _Nb; __i > 0; --__i)
1191 template<size_t _Nb>
1200 template<size_t _Nb>
1209 template <size_t _Nb>
1228 template<class _CharT, class _Traits, size_t _Nb>
1247 for (size_t __i = _Nb; __i > 0; --__i)
1280 __x._M_copy_from_string(__tmp, static_cast<size_t>(0), _Nb);
1286 template <class _CharT, class _Traits, size_t _Nb>
1301 set(size_t, bool)
1310 reset(size_t)
1319 flip(size_t)
1328 test(size_t) const