Home
last modified time | relevance | path

Searched defs:__n (Results 1 – 25 of 60) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cwchar.h309 inline wchar_t* _STLP_wmemcpy(wchar_t* __wdst, const wchar_t* __wsrc, size_t __n) in _STLP_wmemcpy()
311 inline wchar_t* _STLP_wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n) in _STLP_wmemset()
315 inline wchar_t* wmemcpy(wchar_t* __wdst, const wchar_t* __wsrc, size_t __n) in wmemcpy()
317 inline wchar_t* wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n) in wmemset()
320 inline wchar_t* wmemcpy(wchar_t* __RESTRICT __wdst, const wchar_t* __RESTRICT __wsrc, size_t __n) in wmemcpy()
322 inline wchar_t* wmemmove(wchar_t* __RESTRICT __wdst, const wchar_t * __RESTRICT __wc, size_t __n) in wmemmove()
324 inline wchar_t* wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n) in wmemset()
D_streambuf.h91 void gbump(int __n) { _M_gnext += __n; } in gbump()
105 void _M_gbump(int __n) { gbump(__n); } in _M_gbump()
115 void pbump(int __n) { _M_pnext += __n; } in pbump()
142 basic_streambuf<_CharT, _Traits>* pubsetbuf(char_type* __s, streamsize __n) in pubsetbuf()
204 streamsize sputn(const char_type* __s, streamsize __n) in sputn()
208 streamsize _M_sputnc(char_type __c, streamsize __n) in _M_sputnc()
238 streamsize sgetn(char_type* __s, streamsize __n) in sgetn()
D_alloc.c38 void * _STLP_CALL __debug_alloc<_Alloc>::allocate(size_t __n) { in allocate()
55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { in deallocate()
D_vector.h69 _Vector_base(size_t __n, const _Alloc& __a) in _Vector_base()
166 void _M_range_check(size_type __n) const { in _M_range_check()
171 size_type _M_compute_next_size(size_type __n) { in _M_compute_next_size()
210 reference at(size_type __n) { _M_range_check(__n); return (*this)[__n]; } in at()
211 const_reference at(size_type __n) const { _M_range_check(__n); return (*this)[__n]; } in at()
230 explicit vector(size_type __n) in vector()
235 explicit vector(size_type __n) in vector()
238 vector(size_type __n, const _Tp& __val) in vector()
241 vector(size_type __n, const _Tp& __val, const allocator_type& __a) in vector()
261 void _M_initialize_aux(_Integer __n, _Integer __val, in _M_initialize_aux()
[all …]
D_string_workaround.h53 : _STLP_NO_MEM_T_STRING_BASE(__r, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
60 : _STLP_NO_MEM_T_STRING_BASE(__s, __pos, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
64 : _STLP_NO_MEM_T_STRING_BASE(__s, __n, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
72 : _STLP_NO_MEM_T_STRING_BASE(__n, __c, __a) {} in _STLP_NO_MEM_T_STRING_BASE() argument
124 difference_type __n = _STLP_STD::distance(__f, __l); in _M_range_initialize() local
136 void _M_initialize_dispatch(_Integer __n, _Integer __x, const __true_type& /*_Integral*/) { in _M_initialize_dispatch()
168 size_type __pos, size_type __n) { in append()
173 _Self& append(const _CharT* __s, size_type __n) { in append()
183 _Self& append(size_type __n, _CharT __c) { in append()
219 const size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last)); in _M_appendT() local
[all …]
D_hashtable.c69 _Stl_prime<_Dummy>::_S_next_size(size_t __n) { in _S_next_size()
80 _Stl_prime<_Dummy>::_S_prev_sizes(size_t __n, size_t const*&__begin, size_t const*&__pos) { in _S_prev_sizes()
148 ::_M_before_begin(size_type &__n) const { in _M_before_begin()
157 size_type &__n) { in _S_before_begin()
183 ::_M_insert_noresize(size_type __n, const value_type& __obj) { in _M_insert_noresize()
200 const size_type __n = _M_bkt_num(__obj); in insert_unique_noresize() local
231 const size_type __n = _M_bkt_num(__obj); in insert_equal_noresize() local
264 const size_type __n = _M_bkt_num_key(__key); in erase() local
304 const size_type __n = _M_bkt_num(*__it); in erase() local
D_bitset.c41 for (size_t __n = _Nw - 1; __n >= __wshift; --__n) in _M_do_left_shift() local
46 for (size_t __n = _Nw - 1; __n > __wshift; --__n) in _M_do_left_shift() local
64 for (size_t __n = 0; __n <= __limit; ++__n) in _M_do_right_shift() local
69 for (size_t __n = 0; __n < __limit; ++__n) in _M_do_right_shift() local
Dchar_traits.h146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) { in compare()
160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { in find()
170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) { in copy()
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { in assign()
225 static int _STLP_CALL compare(const char* __s1, const char* __s2, size_t __n) in compare()
234 static char* _STLP_CALL assign(char* __s, size_t __n, char __c) { in assign()
248 static wchar_t* _STLP_CALL move(wchar_t* __dest, const wchar_t* __src, size_t __n) in move()
252 static wchar_t* _STLP_CALL copy(wchar_t* __dest, const wchar_t* __src, size_t __n) in copy()
256 static int _STLP_CALL compare(const wchar_t* __s1, const wchar_t* __s2, size_t __n) in compare()
260 static wchar_t* _STLP_CALL assign(wchar_t* __s, size_t __n, wchar_t __c) in assign()
D_vector.c62 void vector<_Tp, _Alloc>::reserve(size_type __n) { in reserve()
122 void vector<_Tp, _Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, in _M_fill_insert_aux()
140 void vector<_Tp, _Alloc>::_M_fill_insert_aux (iterator __pos, size_type __n, in _M_fill_insert_aux()
167 size_type __n, const _Tp& __x) { in _M_fill_insert()
210 void vector<_Tp, _Alloc>::_M_fill_assign(size_t __n, const _Tp& __val) { in _M_fill_assign()
224 size_type __n = __pos - begin(); in insert() local
D_valarray.c148 valarray<_Tp> valarray<_Tp>::shift(int __n) const { in shift()
171 long __n = __m; in cshift() local
D_string.c162 size_type __n = (max)(__res_arg, size()) + 1; in reserve() local
170 void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) { in _M_reserve()
180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { in append()
198 size_type __n = __STATIC_CAST(size_type, __last - __first); in _M_append() local
222 basic_string<_CharT,_Traits,_Alloc>::assign(size_type __n, _CharT __c) { in assign()
243 ptrdiff_t __n = __l - __f; in _M_assign() local
281 size_t __n, _CharT __c) { in insert()
319 const size_t __n = __last - __first; in _M_insert() local
373 size_type __n, _CharT __c) { in replace()
392 const ptrdiff_t __n = __l - __f; in _M_replace() local
[all …]
D_string.h172 basic_string(_Reserve_t, size_t __n) in basic_string()
175 basic_string(_Reserve_t, size_t __n, const allocator_type& __a) in basic_string()
193 basic_string(const _Self& __s, size_type __pos, size_type __n) in basic_string()
201 basic_string(const _Self& __s, size_type __pos, size_type __n, in basic_string()
216 basic_string(const _CharT* __s, size_type __n) in basic_string()
221 basic_string(const _CharT* __s, size_type __n, const allocator_type& __a) in basic_string()
240 basic_string(size_type __n, _CharT __c) in basic_string()
245 basic_string(size_type __n, _CharT __c, const allocator_type& __a) in basic_string()
302 size_type _M_compute_next_size(size_type __n) { in _M_compute_next_size()
323 difference_type __n = _STLP_STD::distance(__f, __l); in _M_range_initialize() local
[all …]
D_string_sum.h119 const_reference at(size_type __n) const in at()
135 _BString& append(const _BString& __s, size_type __pos, size_type __n) in append()
138 const size_type __n = _Traits::length(__s); in append() local
141 _CStrOnLeft append(const _CharT* __s, size_type __n) in append()
143 _BString& append(size_type __n, _CharT __c) in append()
151 …_BString& assign(const _BString& __s, size_type __pos, size_type __n) {return _M_get_storage().ass… in assign()
152 _BString& assign(const _CharT* __s, size_type __n) {return _M_get_storage().assign(__s, __n);} in assign()
154 _BString& assign(size_type __n, _CharT __c) {return _M_get_storage().assign(__n, __c);} in assign()
158 _BString& insert(size_type __pos, const _BString& __s, size_type __beg, size_type __n) in insert()
160 …_BString& insert(size_type __pos, const _CharT* __s, size_type __n) {return _M_get_storage().inser… in insert()
[all …]
D_sstream.c171 streamsize __n) { in xsputn()
214 streamsize __n) { in _M_xsputnc()
262 basic_stringbuf<_CharT, _Traits, _Alloc>::setbuf(_CharT*, streamsize __n) { in setbuf()
335 ptrdiff_t __n = this->egptr() - this->eback(); in seekoff() local
344 ptrdiff_t __n = this->epptr() - this->pbase(); in seekoff() local
370 const off_type __n = __pos - pos_type(off_type(0)); in seekpos() local
D_uninitialized.h86 for (_Distance __n = __last - __first; __n > 0; --__n) { in __ucopy() local
249 for (_Distance __n = __last - __first; __n > 0; --__n, ++__cur) in __ufill() local
285 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x) { in __ufill_n()
296 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x, in __ufill_n()
302 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x, in __ufill_n()
307 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x, in __ufill_n()
313 inline _ForwardIter __uninitialized_fill_n(_ForwardIter __first, _Size __n, const _Tp& __x) { in __uninitialized_fill_n()
320 inline _ForwardIter __ufill_n(_ForwardIter __first, _Size __n, const _Tp& __x, in __ufill_n()
329 inline _ForwardIter __uinit_aux_aux(_ForwardIter __first, _Size __n, const _Tp& __val, in __uinit_aux_aux()
334 inline _ForwardIter __uinit_aux_aux(_ForwardIter __first, _Size __n, const _Tp& /* __val */, in __uinit_aux_aux()
[all …]
D_string_sum_methods.h59 …ast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf, size_type /*__pos*/, size_type __n) { in _M_append_fast_pos() argument
66 size_type __pos, size_type __n) in _M_append_fast_pos()
69 size_type __pos, size_type __n) in _M_append_fast_pos()
72 size_type __pos, size_type __n) in _M_append_fast_pos()
75 size_type __pos, size_type __n) in _M_append_fast_pos()
83 _CharT *__buf, size_type __pos, size_type __n) { in _M_append_fast_pos()
125 size_type __pos, size_type __n) { in _M_append_sum_pos()
149 size_type __pos, size_type __n) { in _M_append_sum_no_overflow()
D_deque.c82 for (_Tp** __n = __nstart; __n < __nfinish; ++__n) in _M_destroy_nodes() local
123 size_type __n, const value_type& __x) { in _M_fill_insert()
155 size_type __n = __last - __first; in insert() local
183 size_type __n = __last - __first; in insert() local
262 difference_type __n = __last - __first; in _M_erase() local
326 difference_type __n = __last - __first; in _M_erase() local
464 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, in _M_fill_insert_aux()
506 __iterator__ deque<_Tp,_Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, in _M_fill_insert_aux()
564 size_type __n, const __true_type& /*_Movable*/) { in _M_insert_range_aux()
603 size_type __n, const __false_type& /*_Movable*/) { in _M_insert_range_aux()
[all …]
D_iomanip.h110 inline _STLP_PRIV _Ios_Setf_Manip _STLP_CALL setbase(int __n) { in setbase()
119 setprecision(int __n) { in setprecision()
125 setw(int __n) { in setw()
D_streambuf.c54 basic_streambuf<_CharT, _Traits>::xsgetn(_CharT* __s, streamsize __n) { in xsgetn()
84 basic_streambuf<_CharT, _Traits>::xsputn(const _CharT* __s, streamsize __n) in xsputn()
112 basic_streambuf<_CharT, _Traits>::_M_xsputnc(_CharT __c, streamsize __n) in _M_xsputnc()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstrstream.cpp34 strstreambuf::__init(char* __gnext, streamsize __n, char* __pbeg) in __init()
49 strstreambuf::strstreambuf(char* __gnext, streamsize __n, char* __pbeg) in strstreambuf()
58 strstreambuf::strstreambuf(const char* __gnext, streamsize __n) in strstreambuf()
67 strstreambuf::strstreambuf(signed char* __gnext, streamsize __n, signed char* __pbeg) in strstreambuf()
76 strstreambuf::strstreambuf(const signed char* __gnext, streamsize __n) in strstreambuf()
85 strstreambuf::strstreambuf(unsigned char* __gnext, streamsize __n, unsigned char* __pbeg) in strstreambuf()
94 strstreambuf::strstreambuf(const unsigned char* __gnext, streamsize __n) in strstreambuf()
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h95 : _M_non_dbg_impl(__r, __n, __a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
198 void resize(size_type __n, _CharT __c) { in resize()
205 void resize(size_type __n) { resize(__n, _STLP_DEFAULT_CONSTRUCTED(_CharT)); } in resize()
230 const_reference at(size_type __n) const { return _M_non_dbg_impl.at(__n); } in at()
231 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); } in at()
280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { in append()
287 _Self& append(const _CharT* __s, size_type __n) { in append()
305 _Self& append(size_type __n, _CharT __c) { in append()
330 _Self& assign(const _Self& __s, size_type __pos, size_type __n) { in assign()
[all …]
D_string_sum_methods.h59 …fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str, size_type /*__pos*/, size_type __n) { in _M_append_fast_pos() argument
65 size_type __pos, size_type __n) in _M_append_fast_pos()
68 size_type __pos, size_type __n) in _M_append_fast_pos()
71 size_type __pos, size_type __n) in _M_append_fast_pos()
73 _Base& _M_append_fast_pos(_Self const& __s, _Base &__str, size_type __pos, size_type __n) in _M_append_fast_pos()
81 _Base &__str, size_type __pos, size_type __n) { in _M_append_fast_pos()
107 size_type __pos, size_type __n, _Base &__impl) { in _M_append_sum_pos()
D_hashtable.h139 : _M_non_dbg_impl(__n, __hf, __eql, __ext, __a), in _M_non_dbg_impl() argument
146 : _M_non_dbg_impl(__n, __hf, __eql, __a), in _M_non_dbg_impl() argument
185 local_iterator begin(size_type __n) { in begin()
190 local_iterator end(size_type __n) { in end()
198 const_local_iterator begin(size_type __n) const { in begin()
203 const_local_iterator end(size_type __n) const { in end()
286 size_type __n = _STLP_STD::distance(__p.first, __p.second); in erase() local
317 size_type elems_in_bucket(size_type __n) const { in elems_in_bucket()
/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp131 void* _STLP_CALL __malloc_alloc::allocate(size_t __n) in allocate()
318 void* __node_alloc_impl::_M_allocate(size_t& __n) { in _M_allocate()
340 void __node_alloc_impl::_M_deallocate(void *__p, size_t __n) { in _M_deallocate()
434 _Node_alloc_obj* __node_alloc_impl::_S_refill(size_t __n) { in _S_refill()
484 void* __node_alloc_impl::_M_allocate(size_t& __n) { in _M_allocate()
496 void __node_alloc_impl::_M_deallocate(void *__p, size_t __n) { in _M_deallocate()
507 __node_alloc_impl::_Obj* __node_alloc_impl::_S_refill(size_t __n) { in _S_refill()
742 void * _STLP_CALL __node_alloc::_M_allocate(size_t& __n) in _M_allocate()
745 void _STLP_CALL __node_alloc::_M_deallocate(void *__p, size_t __n) in _M_deallocate()
853 void *_Pthread_alloc_per_thread_state::_M_refill(size_t __n) { in _M_refill()
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
D_vector.h103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } in at()
104 …const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n));… in at()
115 : _M_impl(__n, cast_traits::to_storage_type_cref(__val), in _M_impl() argument
119 explicit vector(size_type __n) in vector()
153 void reserve(size_type __n) {_M_impl.reserve(__n);} in reserve()
154 void assign(size_type __n, const value_type& __val) in assign()
205 void insert (iterator __pos, size_type __n, const value_type& __x) { in insert()

123