HomeSort by relevance Sort by last modified time
    Searched refs:__n (Results 101 - 125 of 252) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_bvector.h 139 difference_type __n = __i + _M_offset; local
140 _M_p += __n / int(_S_word_bit);
141 __n = __n % int(_S_word_bit);
142 if (__n < 0)
144 __n += int(_S_word_bit);
147 _M_offset = static_cast<unsigned int>(__n);
264 operator+(ptrdiff_t __n, const _Bit_iterator& __x)
265 { return __x + __n; }
350 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x
775 const difference_type __n = __position - begin(); local
900 const size_type __n = std::distance(__first, __last); local
    [all...]
  /external/stlport/stlport/stl/debug/
_string.h 93 basic_string(_Reserve_t __r, size_t __n,
95 : _M_non_dbg_impl(__r, __n, __a), _M_iter_list(&_M_non_dbg_impl) {}
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
116 basic_string(size_type __n, _CharT __c,
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {}
198 void resize(size_type __n, _CharT __c) {
199 if (__n > capacity()
    [all...]
_vector.h 161 reference operator[](size_type __n) {
162 _STLP_VERBOSE_ASSERT(__n < size(), _StlMsg_OUT_OF_BOUNDS)
163 return _M_non_dbg_impl[__n];
166 const_reference operator[](size_type __n) const {
167 _STLP_VERBOSE_ASSERT(__n < size(), _StlMsg_OUT_OF_BOUNDS)
168 return _M_non_dbg_impl[__n];
171 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); }
172 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); }
    [all...]
_hashtable.h 134 hashtable(size_type __n,
139 : _M_non_dbg_impl(__n, __hf, __eql, __ext, __a),
142 hashtable(size_type __n,
146 : _M_non_dbg_impl(__n, __hf, __eql, __a),
185 local_iterator begin(size_type __n) {
187 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
188 return local_iterator(&_M_iter_list, _M_non_dbg_impl.begin(__n));
190 local_iterator end(size_type __n) {
192 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
193 return local_iterator(&_M_iter_list, _M_non_dbg_impl.end(__n));
286 size_type __n = _STLP_STD::distance(__p.first, __p.second); local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 93 basic_string(_Reserve_t __r, size_t __n,
95 : _M_non_dbg_impl(__r, __n, __a), _M_iter_list(&_M_non_dbg_impl) {}
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
116 basic_string(size_type __n, _CharT __c,
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {}
198 void resize(size_type __n, _CharT __c) {
199 if (__n > capacity()
    [all...]
_vector.h 161 reference operator[](size_type __n) {
162 _STLP_VERBOSE_ASSERT(__n < size(), _StlMsg_OUT_OF_BOUNDS)
163 return _M_non_dbg_impl[__n];
166 const_reference operator[](size_type __n) const {
167 _STLP_VERBOSE_ASSERT(__n < size(), _StlMsg_OUT_OF_BOUNDS)
168 return _M_non_dbg_impl[__n];
171 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); }
172 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); }
    [all...]
  /external/stlport/stlport/stl/
_uninitialized.h 86 for (_Distance __n = __last - __first; __n > 0; --__n) {
249 for (_Distance __n = __last - __first; __n > 0; --__n, ++__cur)
285 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x) {
288 for ( ; __n > 0; --__n, ++__cur)
296 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x
    [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...]
_hashtable.c 69 _Stl_prime<_Dummy>::_S_next_size(size_t __n) {
73 const size_t* pos = __lower_bound(__first, __last, __n,
80 _Stl_prime<_Dummy>::_S_prev_sizes(size_t __n, size_t const*&__begin, size_t const*&__pos) {
84 __pos = __lower_bound(__begin, __last, __n,
89 else if (*__pos == __n) {
140 /* Returns the iterator before the first iterator of the bucket __n and set
141 * __n to the first previous bucket having the same first iterator as bucket
142 * __n.
148 ::_M_before_begin(size_type &__n) const {
149 return _S_before_begin(_M_elems, _M_buckets, __n);
200 const size_type __n = _M_bkt_num(__obj); local
231 const size_type __n = _M_bkt_num(__obj); local
264 const size_type __n = _M_bkt_num_key(__key); local
304 const size_type __n = _M_bkt_num(*__it); local
    [all...]
_iomanip.h 110 inline _STLP_PRIV _Ios_Setf_Manip _STLP_CALL setbase(int __n) {
111 ios_base::fmtflags __base = __n == 8 ? ios_base::oct :
112 __n == 10 ? ios_base::dec :
113 __n == 16 ? ios_base::hex :
119 setprecision(int __n) {
121 return _STLP_PRIV _Ios_Manip_1<streamsize>(__f, __n);
125 setw(int __n) {
127 return _STLP_PRIV _Ios_Manip_1<streamsize>(__f, __n);
_new.h 131 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n, __FILE__, __LINE__)); }
134 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n)); }
_iterator_old.h 203 _Self operator+(_Distance __n) const {
204 return _Self(__current - __n);
206 _Self& operator+=(_Distance __n) {
207 __current -= __n;
210 _Self operator-(_Distance __n) const {
211 return _Self(__current + __n);
213 _Self& operator-=(_Distance __n) {
214 __current += __n;
217 _Reference operator[](_Distance __n) const { return *(*this + __n); }
    [all...]
_ostream.c 335 streamsize __n = _Traits::length(__s); local
336 streamsize __npad = this->width() > __n ? this->width() - __n : 0;
340 __failed = this->rdbuf()->sputn(__s, __n) != __n;
342 __failed = this->rdbuf()->sputn(__s, __n) != __n;
348 __failed = __failed || this->rdbuf()->sputn(__s, __n) != __n;
367 streamsize __n = char_traits<char>::length(__s) local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 86 for (_Distance __n = __last - __first; __n > 0; --__n) {
249 for (_Distance __n = __last - __first; __n > 0; --__n, ++__cur)
285 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x) {
288 for ( ; __n > 0; --__n, ++__cur)
296 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x
    [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...]
_hashtable.c 69 _Stl_prime<_Dummy>::_S_next_size(size_t __n) {
73 const size_t* pos = __lower_bound(__first, __last, __n,
80 _Stl_prime<_Dummy>::_S_prev_sizes(size_t __n, size_t const*&__begin, size_t const*&__pos) {
84 __pos = __lower_bound(__begin, __last, __n,
89 else if (*__pos == __n) {
140 /* Returns the iterator before the first iterator of the bucket __n and set
141 * __n to the first previous bucket having the same first iterator as bucket
142 * __n.
148 ::_M_before_begin(size_type &__n) const {
149 return _S_before_begin(_M_elems, _M_buckets, __n);
200 const size_type __n = _M_bkt_num(__obj); local
231 const size_type __n = _M_bkt_num(__obj); local
264 const size_type __n = _M_bkt_num_key(__key); local
304 const size_type __n = _M_bkt_num(*__it); local
    [all...]
_iomanip.h 110 inline _STLP_PRIV _Ios_Setf_Manip _STLP_CALL setbase(int __n) {
111 ios_base::fmtflags __base = __n == 8 ? ios_base::oct :
112 __n == 10 ? ios_base::dec :
113 __n == 16 ? ios_base::hex :
119 setprecision(int __n) {
121 return _STLP_PRIV _Ios_Manip_1<streamsize>(__f, __n);
125 setw(int __n) {
127 return _STLP_PRIV _Ios_Manip_1<streamsize>(__f, __n);
_new.h 131 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n, __FILE__, __LINE__)); }
134 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n)); }
_iterator_old.h 203 _Self operator+(_Distance __n) const {
204 return _Self(__current - __n);
206 _Self& operator+=(_Distance __n) {
207 __current -= __n;
210 _Self operator-(_Distance __n) const {
211 return _Self(__current + __n);
213 _Self& operator-=(_Distance __n) {
214 __current += __n;
217 _Reference operator[](_Distance __n) const { return *(*this + __n); }
    [all...]
_ostream.c 335 streamsize __n = _Traits::length(__s); local
336 streamsize __npad = this->width() > __n ? this->width() - __n : 0;
340 __failed = this->rdbuf()->sputn(__s, __n) != __n;
342 __failed = this->rdbuf()->sputn(__s, __n) != __n;
348 __failed = __failed || this->rdbuf()->sputn(__s, __n) != __n;
367 streamsize __n = char_traits<char>::length(__s) local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
basic_file.h 87 xsputn(const char* __s, streamsize __n);
94 xsgetn(char* __s, streamsize __n);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
new_allocator.h 81 // NB: __n is permitted to be 0. The C++ standard says nothing
82 // about what the return value is when __n == 0.
84 allocate(size_type __n, const void* = 0)
86 if (__builtin_expect(__n > this->max_size(), false))
89 return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
string_conversions.h 74 __builtin_va_list), std::size_t __n,
80 * __n));
85 const int __len = __convf(__s, __n, __fmt, __args);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
printf.h 74 size_t __n, int *__argtypes);
96 extern size_t parse_printf_format (__const char *__restrict __fmt, size_t __n,
140 __info, size_t __n, int *__restrict __argtypes)
  /external/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...]

Completed in 861 milliseconds

1 2 3 45 6 7 8 91011