Searched refs:_S_word_bit (Results 1 - 3 of 3) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/bool/capacity/
H A D29134.cc33 using std::_GLIBCXX_STD_C::_S_word_bit;
35 using std::_GLIBCXX_STD_C::_S_word_bit;
37 using std::_S_word_bit;
46 - int(_S_word_bit) + 1) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/bool/modifiers/insert/
H A D31370.cc28 using std::_GLIBCXX_STD_C::_S_word_bit;
30 using std::_GLIBCXX_STD_C::_S_word_bit;
32 using std::_S_word_bit;
73 for(int i = 0; i < _S_word_bit; ++i)
86 x.insert(x.end(), _S_word_bit, false);
98 std::vector<bool> y(_S_word_bit, false);
112 x.resize(x.max_size() - _S_word_bit, false);
113 for(int i = 0; i < _S_word_bit; ++i)
125 x.resize(x.max_size() - _S_word_bit, false);
126 x.insert(x.end(), _S_word_bit, fals
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_bvector.h68 enum { _S_word_bit = int(__CHAR_BIT__ * sizeof(_Bit_type)) }; enumerator in enum:__anon2314
148 if (_M_offset++ == int(_S_word_bit) - 1)
160 _M_offset = int(_S_word_bit) - 1;
169 _M_p += __n / int(_S_word_bit);
170 __n = __n % int(_S_word_bit);
173 __n += int(_S_word_bit);
210 return (int(_S_word_bit) * (__x._M_p - __y._M_p)
508 { return (__n + int(_S_word_bit) - 1) / int(_S_word_bit); }
837 - int(_S_word_bit)
[all...]

Completed in 45 milliseconds