HomeSort by relevance Sort by last modified time
    Searched defs:__n (Results 226 - 250 of 465) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
rc_string_base.h 136 _M_set_length(size_type __n)
139 _M_info._M_length = __n;
142 traits_type::assign(_M_refdata()[__n], _CharT());
293 _M_set_length(size_type __n)
294 { _M_rep()->_M_set_length(__n); }
309 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a);
340 _M_erase(size_type __pos, size_type __n);
364 std::__throw_length_error(__N("__rc_string_base::_Rep::_S_create"));
469 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a)
470 : _M_dataplus(__a, _S_construct(__n, __c, __a)) {
686 _M_data() + __pos + __n, __how_much); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
hashtable_policy.h 426 _M_next_bkt(std::size_t __n) const;
430 _M_bkt_for_elements(std::size_t __n) const;
455 _M_next_bkt(std::size_t __n) const
458 + _S_n_primes, __n);
468 _M_bkt_for_elements(std::size_t __n) const
470 const float __min_bkts = __n / _M_max_load_factor;
568 std::size_t __n = __h->_M_bucket_index(__k, __code, local
572 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
575 __n, __code)->second;
588 std::size_t __n = __h->_M_bucket_index(__k, __code local
606 std::size_t __n = __h->_M_bucket_index(__k, __code, local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 68 ptrdiff_t _M_read(char* __buf, ptrdiff_t __n);
71 bool _M_write(char* __buf, ptrdiff_t __n);
234 bool _M_allocate_buffers(_CharT* __buf, streamsize __n);
322 bool _M_write(char* __buf, ptrdiff_t __n) {return _M_base._M_write(__buf, __n); }
359 ptrdiff_t __n = __last - __first; local
360 return (__buf->_M_write(__first, __n));
_string.c 162 size_type __n = (max)(__res_arg, size()) + 1; local
163 if (__n < this->_M_capacity())
166 _M_reserve(__n);
170 void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) {
171 pointer __new_start = this->_M_start_of_storage.allocate(__n, __n);
175 this->_M_reset(__new_start, __new_finish, __new_start + __n);
180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) {
181 if (__n > 0) {
182 if (__n > max_size() - size()
198 size_type __n = __STATIC_CAST(size_type, __last - __first); local
243 ptrdiff_t __n = __l - __f; local
319 const size_t __n = __last - __first; local
392 const ptrdiff_t __n = __l - __f; local
    [all...]
_string_sum.h 33 const_reference operator[] (size_t __n) const {
34 //To avoid a check on __n we use this strange implementation
35 return (&_Val)[__n];
54 const_reference operator[] (size_t __n) const { return _CStr[__n]; }
72 const_reference operator[] (size_t __n) const { return _BStr[__n]; }
116 const_reference operator[](size_t __n) const
117 { return (__n < _lhs.size())?_lhs[__n]:_rhs[__n - _lhs.size()];
138 const size_type __n = _Traits::length(__s); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 139 reference operator[](size_type __n)
140 { return cast_traits::to_value_type_ref(_M_impl[__n]); }
141 const_reference operator[](size_type __n) const
142 { return cast_traits::to_value_type_cref(_M_impl[__n]); }
144 reference at(size_type __n)
145 { return cast_traits::to_value_type_ref(_M_impl.at(__n)); }
146 const_reference at(size_type __n) const
147 { return cast_traits::to_value_type_cref(_M_impl.at(__n)); }
165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
167 deque(size_type __n, const value_type& __val
301 { _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, cast_traits::to_storage_type_cref(__x)); } local
309 _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, __val); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 110 _Vector_base(size_t __n, const allocator_type& __a)
113 this->_M_impl._M_start = this->_M_allocate(__n);
115 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
139 _M_allocate(size_t __n)
140 { return __n != 0 ? _M_impl.allocate(__n) : 0; }
143 _M_deallocate(typename _Tp_alloc_type::pointer __p, size_t __n)
146 _M_impl.deallocate(__p, __n);
227 vector(size_type __n, const value_type& __value = value_type(),
229 : _Base(__n, __a
1037 const size_type __n = std::distance(__first, __last); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
rc_string_base.h 136 _M_set_length(size_type __n)
139 _M_info._M_length = __n;
142 traits_type::assign(_M_refdata()[__n], _CharT());
293 _M_set_length(size_type __n)
294 { _M_rep()->_M_set_length(__n); }
309 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a);
340 _M_erase(size_type __pos, size_type __n);
364 std::__throw_length_error(__N("__rc_string_base::_Rep::_S_create"));
469 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a)
470 : _M_dataplus(__a, _S_construct(__n, __c, __a)) {
686 _M_data() + __pos + __n, __how_much); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
hashtable_policy.h 426 _M_next_bkt(std::size_t __n) const;
430 _M_bkt_for_elements(std::size_t __n) const;
455 _M_next_bkt(std::size_t __n) const
458 + _S_n_primes, __n);
468 _M_bkt_for_elements(std::size_t __n) const
470 const float __min_bkts = __n / _M_max_load_factor;
568 std::size_t __n = __h->_M_bucket_index(__k, __code, local
572 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
575 __n, __code)->second;
588 std::size_t __n = __h->_M_bucket_index(__k, __code local
606 std::size_t __n = __h->_M_bucket_index(__k, __code, local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 68 ptrdiff_t _M_read(char* __buf, ptrdiff_t __n);
71 bool _M_write(char* __buf, ptrdiff_t __n);
234 bool _M_allocate_buffers(_CharT* __buf, streamsize __n);
322 bool _M_write(char* __buf, ptrdiff_t __n) {return _M_base._M_write(__buf, __n); }
359 ptrdiff_t __n = __last - __first; local
360 return (__buf->_M_write(__first, __n));
_string.c 162 size_type __n = (max)(__res_arg, size()) + 1; local
163 if (__n < this->_M_capacity())
166 _M_reserve(__n);
170 void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) {
171 pointer __new_start = this->_M_start_of_storage.allocate(__n, __n);
175 this->_M_reset(__new_start, __new_finish, __new_start + __n);
180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) {
181 if (__n > 0) {
182 if (__n > max_size() - size()
198 size_type __n = __STATIC_CAST(size_type, __last - __first); local
243 ptrdiff_t __n = __l - __f; local
319 const size_t __n = __last - __first; local
392 const ptrdiff_t __n = __l - __f; local
    [all...]
_string_sum.h 33 const_reference operator[] (size_t __n) const {
34 //To avoid a check on __n we use this strange implementation
35 return (&_Val)[__n];
54 const_reference operator[] (size_t __n) const { return _CStr[__n]; }
72 const_reference operator[] (size_t __n) const { return _BStr[__n]; }
116 const_reference operator[](size_t __n) const
117 { return (__n < _lhs.size())?_lhs[__n]:_rhs[__n - _lhs.size()];
138 const size_type __n = _Traits::length(__s); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 139 reference operator[](size_type __n)
140 { return cast_traits::to_value_type_ref(_M_impl[__n]); }
141 const_reference operator[](size_type __n) const
142 { return cast_traits::to_value_type_cref(_M_impl[__n]); }
144 reference at(size_type __n)
145 { return cast_traits::to_value_type_ref(_M_impl.at(__n)); }
146 const_reference at(size_type __n) const
147 { return cast_traits::to_value_type_cref(_M_impl.at(__n)); }
165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
167 deque(size_type __n, const value_type& __val
301 { _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, cast_traits::to_storage_type_cref(__x)); } local
309 _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, __val); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 110 _Vector_base(size_t __n, const allocator_type& __a)
113 this->_M_impl._M_start = this->_M_allocate(__n);
115 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
139 _M_allocate(size_t __n)
140 { return __n != 0 ? _M_impl.allocate(__n) : 0; }
143 _M_deallocate(typename _Tp_alloc_type::pointer __p, size_t __n)
146 _M_impl.deallocate(__p, __n);
227 vector(size_type __n, const value_type& __value = value_type(),
229 : _Base(__n, __a
1037 const size_type __n = std::distance(__first, __last); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
rc_string_base.h 136 _M_set_length(size_type __n)
139 _M_info._M_length = __n;
142 traits_type::assign(_M_refdata()[__n], _CharT());
293 _M_set_length(size_type __n)
294 { _M_rep()->_M_set_length(__n); }
309 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a);
340 _M_erase(size_type __pos, size_type __n);
364 std::__throw_length_error(__N("__rc_string_base::_Rep::_S_create"));
469 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a)
470 : _M_dataplus(__a, _S_construct(__n, __c, __a)) {
686 _M_data() + __pos + __n, __how_much); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
hashtable_policy.h 426 _M_next_bkt(std::size_t __n) const;
430 _M_bkt_for_elements(std::size_t __n) const;
455 _M_next_bkt(std::size_t __n) const
458 + _S_n_primes, __n);
468 _M_bkt_for_elements(std::size_t __n) const
470 const float __min_bkts = __n / _M_max_load_factor;
568 std::size_t __n = __h->_M_bucket_index(__k, __code, local
572 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
575 __n, __code)->second;
588 std::size_t __n = __h->_M_bucket_index(__k, __code local
606 std::size_t __n = __h->_M_bucket_index(__k, __code, local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 68 ptrdiff_t _M_read(char* __buf, ptrdiff_t __n);
71 bool _M_write(char* __buf, ptrdiff_t __n);
234 bool _M_allocate_buffers(_CharT* __buf, streamsize __n);
322 bool _M_write(char* __buf, ptrdiff_t __n) {return _M_base._M_write(__buf, __n); }
359 ptrdiff_t __n = __last - __first; local
360 return (__buf->_M_write(__first, __n));
_string.c 162 size_type __n = (max)(__res_arg, size()) + 1; local
163 if (__n < this->_M_capacity())
166 _M_reserve(__n);
170 void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) {
171 pointer __new_start = this->_M_start_of_storage.allocate(__n, __n);
175 this->_M_reset(__new_start, __new_finish, __new_start + __n);
180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) {
181 if (__n > 0) {
182 if (__n > max_size() - size()
198 size_type __n = __STATIC_CAST(size_type, __last - __first); local
243 ptrdiff_t __n = __l - __f; local
319 const size_t __n = __last - __first; local
392 const ptrdiff_t __n = __l - __f; local
    [all...]
_string_sum.h 33 const_reference operator[] (size_t __n) const {
34 //To avoid a check on __n we use this strange implementation
35 return (&_Val)[__n];
54 const_reference operator[] (size_t __n) const { return _CStr[__n]; }
72 const_reference operator[] (size_t __n) const { return _BStr[__n]; }
116 const_reference operator[](size_t __n) const
117 { return (__n < _lhs.size())?_lhs[__n]:_rhs[__n - _lhs.size()];
138 const size_type __n = _Traits::length(__s); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 139 reference operator[](size_type __n)
140 { return cast_traits::to_value_type_ref(_M_impl[__n]); }
141 const_reference operator[](size_type __n) const
142 { return cast_traits::to_value_type_cref(_M_impl[__n]); }
144 reference at(size_type __n)
145 { return cast_traits::to_value_type_ref(_M_impl.at(__n)); }
146 const_reference at(size_type __n) const
147 { return cast_traits::to_value_type_cref(_M_impl.at(__n)); }
165 explicit deque(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
167 deque(size_type __n, const value_type& __val
301 { _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, cast_traits::to_storage_type_cref(__x)); } local
309 _M_impl.insert(ite_cast_traits::to_storage_type_ite(__pos), __n, __val); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_vector.h 110 _Vector_base(size_t __n, const allocator_type& __a)
113 this->_M_impl._M_start = this->_M_allocate(__n);
115 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
139 _M_allocate(size_t __n)
140 { return __n != 0 ? _M_impl.allocate(__n) : 0; }
143 _M_deallocate(typename _Tp_alloc_type::pointer __p, size_t __n)
146 _M_impl.deallocate(__p, __n);
227 vector(size_type __n, const value_type& __value = value_type(),
229 : _Base(__n, __a
1033 const size_type __n = std::distance(__first, __last); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
rc_string_base.h 136 _M_set_length(size_type __n)
139 _M_info._M_length = __n;
142 traits_type::assign(_M_refdata()[__n], _CharT());
293 _M_set_length(size_type __n)
294 { _M_rep()->_M_set_length(__n); }
309 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a);
340 _M_erase(size_type __pos, size_type __n);
364 std::__throw_length_error(__N("__rc_string_base::_Rep::_S_create"));
469 __rc_string_base(size_type __n, _CharT __c, const _Alloc& __a)
470 : _M_dataplus(__a, _S_construct(__n, __c, __a)) {
686 _M_data() + __pos + __n, __how_much); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
hashtable_policy.h 426 _M_next_bkt(std::size_t __n) const;
430 _M_bkt_for_elements(std::size_t __n) const;
455 _M_next_bkt(std::size_t __n) const
458 + _S_n_primes, __n);
468 _M_bkt_for_elements(std::size_t __n) const
470 const float __min_bkts = __n / _M_max_load_factor;
568 std::size_t __n = __h->_M_bucket_index(__k, __code, local
572 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
575 __n, __code)->second;
588 std::size_t __n = __h->_M_bucket_index(__k, __code local
606 std::size_t __n = __h->_M_bucket_index(__k, __code, local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
hashtable_policy.h 399 _M_next_bkt(std::size_t __n) const;
403 _M_bkt_for_elements(std::size_t __n) const;
428 _M_next_bkt(std::size_t __n) const
431 + _S_n_primes, __n);
441 _M_bkt_for_elements(std::size_t __n) const
443 const float __min_bkts = __n / _M_max_load_factor;
542 std::size_t __n = __h->_M_bucket_index(__k, __code, local
546 __h->_M_find_node(__h->_M_buckets[__n], __k, __code);
549 __n, __code)->second;
561 std::size_t __n = __h->_M_bucket_index(__k, __code local
581 std::size_t __n = __h->_M_bucket_index(__k, __code, local
599 std::size_t __n = __h->_M_bucket_index(__k, __code, local
    [all...]
stl_algobase.h 327 for(_Distance __n = __last - __first; __n > 0; --__n)
346 for(_Distance __n = __last - __first; __n > 0; --__n)
529 typename iterator_traits<_BI1>::difference_type __n; local
530 for (__n = __last - __first; __n > 0; --__n)
544 typename iterator_traits<_BI1>::difference_type __n; local
    [all...]

Completed in 1580 milliseconds

1 2 3 4 5 6 7 8 91011>>