Searched refs:__n (Results 1 - 25 of 71) sorted by relevance

123

/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dstl_iterator_base_funcs.h81 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
85 ++__n;
87 return __n;
124 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) argument
128 while (__n--)
134 __advance(_BidirectionalIterator& __i, _Distance __n, argument
140 if (__n > 0)
141 while (__n--)
144 while (__n++)
150 __advance(_RandomAccessIterator& __i, _Distance __n, argument
173 advance(_InputIterator& __i, _Distance __n) argument
[all...]
H A Dostream_insert.h47 const _CharT* __s, streamsize __n)
52 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
53 if (__put != __n)
59 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n) argument
65 for (; __n > 0; --__n)
79 const _CharT* __s, streamsize __n)
90 if (__w > __n)
96 __ostream_fill(__out, __w - __n);
98 __ostream_write(__out, __s, __n);
46 __ostream_write(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
78 __ostream_insert(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
[all...]
H A Dchar_traits.h108 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
114 find(const char_type* __s, std::size_t __n, const char_type& __a);
117 move(char_type* __s1, const char_type* __s2, std::size_t __n);
120 copy(char_type* __s1, const char_type* __s2, std::size_t __n);
123 assign(char_type* __s, std::size_t __n, char_type __a);
149 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) argument
151 for (std::size_t __i = 0; __i < __n; ++__i)
173 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
175 for (std::size_t __i = 0; __i < __n; ++__i)
184 move(char_type* __s1, const char_type* __s2, std::size_t __n) argument
193 copy(char_type* __s1, const char_type* __s2, std::size_t __n) argument
202 assign(char_type* __s, std::size_t __n, char_type __a) argument
253 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
261 find(const char_type* __s, size_t __n, const char_type& __a) argument
265 move(char_type* __s1, const char_type* __s2, size_t __n) argument
269 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
273 assign(char_type* __s, size_t __n, char_type __a) argument
323 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
331 find(const char_type* __s, size_t __n, const char_type& __a) argument
335 move(char_type* __s1, const char_type* __s2, size_t __n) argument
339 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
343 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dvalarray_array.h57 __valarray_get_memory(size_t __n) argument
58 { return operator new(__n); }
62 __valarray_get_storage(size_t __n) argument
65 (std::__valarray_get_memory(__n * sizeof(_Tp)));
175 // copy-construct raw array [__o, *) from strided array __a[<__n : __s>]
178 __valarray_copy_construct (const _Tp* __restrict__ __a, size_t __n, argument
182 while (__n--)
188 while (__n--)
195 // copy-construct raw array [__o, *) from indexed array __a[__i[<__n>]]
200 _Tp* __restrict__ __o, size_t __n)
198 __valarray_copy_construct(const _Tp* __restrict__ __a, const size_t* __restrict__ __i, _Tp* __restrict__ __o, size_t __n) argument
226 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t) argument
235 __valarray_fill(_Tp* __restrict__ __a, size_t __n, size_t __s, const _Tp& __t) argument
245 __valarray_fill(_Tp* __restrict__ __a, const size_t* __restrict__ __i, size_t __n, const _Tp& __t) argument
258 _S_do_it(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b) argument
269 _S_do_it(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b) argument
276 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b) argument
285 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, size_t __s, _Tp* __restrict__ __b) argument
295 __valarray_copy(const _Tp* __restrict__ __a, _Tp* __restrict__ __b, size_t __n, size_t __s) argument
306 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, size_t __s1, _Tp* __restrict__ __dst, size_t __s2) argument
316 __valarray_copy(const _Tp* __restrict__ __a, const size_t* __restrict__ __i, _Tp* __restrict__ __b, size_t __n) argument
327 __valarray_copy(const _Tp* __restrict__ __a, size_t __n, _Tp* __restrict__ __b, const size_t* __restrict__ __i) argument
338 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, const size_t* __restrict__ __i, _Tp* __restrict__ __dst, const size_t* __restrict__ __j) argument
431 __valarray_copy_construct(_Array<_Tp> __a, _Array<size_t> __i, _Array<_Tp> __b, size_t __n) argument
439 __valarray_copy_construct(_Array<_Tp> __a, size_t __n, size_t __s, _Array<_Tp> __b) argument
445 __valarray_fill(_Array<_Tp> __a, size_t __n, const _Tp& __t) argument
450 __valarray_fill(_Array<_Tp> __a, size_t __n, size_t __s, const _Tp& __t) argument
455 __valarray_fill(_Array<_Tp> __a, _Array<size_t> __i, size_t __n, const _Tp& __t) argument
462 __valarray_copy(_Array<_Tp> __a, size_t __n, _Array<_Tp> __b) argument
468 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s, _Array<_Tp> __b) argument
474 __valarray_copy(_Array<_Tp> __a, _Array<_Tp> __b, size_t __n, size_t __s) argument
481 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s1, _Array<_Tp> __b, size_t __s2) argument
488 __valarray_copy(_Array<_Tp> __a, _Array<size_t> __i, _Array<_Tp> __b, size_t __n) argument
495 __valarray_copy(_Array<_Tp> __a, size_t __n, _Array<_Tp> __b, _Array<size_t> __i) argument
503 __valarray_copy(_Array<_Tp> __src, size_t __n, _Array<size_t> __i, _Array<_Tp> __dst, _Array<size_t> __j) argument
512 _Array(size_t __n) argument
[all...]
H A Dstl_vector.h111 _Vector_base(size_t __n, const allocator_type& __a) argument
114 if (__n)
116 this->_M_impl._M_start = this->_M_allocate(__n);
118 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
130 _M_allocate(size_t __n) argument
131 { return _M_impl.allocate(__n); }
134 _M_deallocate(_Tp* __p, size_t __n) argument
137 _M_impl.deallocate(__p, __n);
213 vector(size_type __n, const value_type& __value = value_type(), argument
215 : _Base(__n, __
296 assign(size_type __n, const value_type& __val) argument
477 operator [](size_type __n) argument
517 at(size_type __n) argument
655 insert(iterator __position, size_type __n, const value_type& __x) argument
763 _M_allocate_and_copy(size_type __n, _ForwardIterator __first, _ForwardIterator __last) argument
786 _M_initialize_dispatch(_Integer __n, _Integer __value, __true_type) argument
822 const size_type __n = std::distance(__first, __last); local
838 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type) argument
878 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __val, __true_type) argument
[all...]
H A Dstl_bvector.h142 difference_type __n = __i + _M_offset; local
143 _M_p += __n / int(_S_word_bit);
144 __n = __n % int(_S_word_bit);
145 if (__n < 0)
147 __n += int(_S_word_bit);
150 _M_offset = static_cast<unsigned int>(__n);
267 operator+(ptrdiff_t __n, const _Bit_iterator& __x) argument
268 { return __x + __n; }
353 operator+(ptrdiff_t __n, cons argument
417 _M_allocate(size_t __n) argument
488 vector(size_type __n, const bool& __value = bool(), const allocator_type& __a = allocator_type()) argument
535 assign(size_type __n, const bool& __x) argument
600 operator [](size_type __n) argument
623 at(size_type __n) argument
631 reserve(size_type __n) argument
706 const difference_type __n = __position - begin(); local
725 insert(iterator __position, size_type __n, const bool& __x) argument
782 _M_initialize(size_type __n) argument
795 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type) argument
823 const size_type __n = std::distance(__first, __last); local
830 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type) argument
840 _M_fill_assign(size_t __n, bool __x) argument
890 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x, __true_type) argument
903 _M_fill_insert(iterator __position, size_type __n, bool __x) argument
950 size_type __n = std::distance(__first, __last); local
[all...]
H A Dbasic_file.h91 xsputn(const char* __s, streamsize __n);
98 xsgetn(char* __s, streamsize __n);
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Ddebug_allocator.h91 allocate(size_type __n) argument
93 pointer __res = _M_allocator.allocate(__n + _M_extra);
95 *__ps = __n;
100 allocate(size_type __n, const void* __hint) argument
102 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
104 *__ps = __n;
109 deallocate(pointer __p, size_type __n) argument
114 if (*reinterpret_cast<size_type*>(__real_p) != __n)
119 _M_allocator.deallocate(__real_p, __n + _M_extra);
H A Dhashtable.h129 _Hashtable_iterator(_Node* __n, _Hashtable* __tab) argument
130 : _M_cur(__n), _M_ht(__tab) { }
181 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab) argument
182 : _M_cur(__n), _M_ht(__tab) { }
226 __stl_next_prime(unsigned long __n) argument
230 const unsigned long* pos = std::lower_bound(__first, __last, __n);
325 hashtable(size_type __n, const _HashFcn& __hf, argument
330 { _M_initialize_buckets(__n); }
332 hashtable(size_type __n, const _HashFcn& __hf, argument
337 { _M_initialize_buckets(__n); }
487 size_type __n = distance(__f, __l); local
498 size_type __n = distance(__f, __l); local
510 size_type __n = _M_bkt_num_key(__key); local
522 size_type __n = _M_bkt_num_key(__key); local
534 const size_type __n = _M_bkt_num_key(__key); local
577 _M_initialize_buckets(size_type __n) argument
604 _Node* __n = _M_get_node(); local
619 _M_delete_node(_Node* __n) argument
750 const size_type __n = _M_bkt_num(__obj); local
769 const size_type __n = _M_bkt_num(__obj); local
796 size_type __n = _M_bkt_num(__obj); local
817 const size_type __n = _M_bkt_num_key(__key); local
843 const size_type __n = _M_bkt_num_key(__key); local
870 const size_type __n = _M_bkt_num_key(__key); local
912 const size_type __n = _M_bkt_num(__p->_M_val); local
994 const size_type __n = _M_next_size(__num_elements_hint); local
1036 _M_erase_bucket(const size_type __n, _Node* __first, _Node* __last) argument
1061 _M_erase_bucket(const size_type __n, _Node* __last) argument
[all...]
H A Dpool_allocator.h112 // Returns an object of size __n, and optionally adds to size __n
115 _M_refill(size_t __n);
120 _M_allocate_chunk(size_t __n, int& __nobjs);
173 allocate(size_type __n, const void* = 0);
176 deallocate(pointer __p, size_type __n);
195 __pool_alloc<_Tp>::allocate(size_type __n, const void*) argument
198 if (__builtin_expect(__n != 0, true))
200 if (__builtin_expect(__n > this->max_size(), false))
214 const size_t __bytes = __n * sizeo
239 deallocate(pointer __p, size_type __n) argument
[all...]
H A Dpod_char_traits.h114 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
116 for (size_t __i = 0; __i < __n; ++__i)
132 find(const char_type* __s, size_t __n, const char_type& __a) argument
134 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
141 move(char_type* __s1, const char_type* __s2, size_t __n) argument
144 __n * sizeof(char_type)));
148 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
150 std::copy(__s2, __s2 + __n, __s1);
155 assign(char_type* __s, size_t __n, char_type __a) argument
157 std::fill_n(__s, __n, __
[all...]
H A Dvstring_util.h109 // When __n = 1 way faster than the general multichar
112 _S_copy(_CharT* __d, const _CharT* __s, size_type __n) argument
114 if (__n == 1)
117 traits_type::copy(__d, __s, __n);
121 _S_move(_CharT* __d, const _CharT* __s, size_type __n) argument
123 if (__n == 1)
126 traits_type::move(__d, __s, __n);
130 _S_assign(_CharT* __d, size_type __n, _CharT __c) argument
132 if (__n == 1)
135 traits_type::assign(__d, __n, __
[all...]
H A Dvstring.h156 size_type __n = npos)
160 __str._M_data() + __str._M_limit(__pos, __n)
171 size_type __n, const _Alloc& __a)
175 __str._M_data() + __str._M_limit(__pos, __n)
187 __versa_string(const _CharT* __s, size_type __n, argument
189 : __vstring_base(__s, __s + __n, __a) { }
206 __versa_string(size_type __n, _CharT __c, const _Alloc& __a = _Alloc()) argument
207 : __vstring_base(__n, __c, __a) { }
360 resize(size_type __n, _CharT __c);
373 resize(size_type __n) argument
170 __versa_string(const __versa_string& __str, size_type __pos, size_type __n, const _Alloc& __a) argument
488 at(size_type __n) argument
549 append(const __versa_string& __str, size_type __pos, size_type __n) argument
561 append(const _CharT* __s, size_type __n) argument
577 const size_type __n = traits_type::length(__s); local
591 append(size_type __n, _CharT __c) argument
646 assign(const __versa_string& __str, size_type __pos, size_type __n) argument
662 assign(const _CharT* __s, size_type __n) argument
695 assign(size_type __n, _CharT __c) argument
724 insert(iterator __p, size_type __n, _CharT __c) argument
778 insert(size_type __pos1, const __versa_string& __str, size_type __pos2, size_type __n) argument
801 insert(size_type __pos, const _CharT* __s, size_type __n) argument
844 insert(size_type __pos, size_type __n, _CharT __c) argument
948 replace(size_type __pos, size_type __n, const __versa_string& __str) argument
1080 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) argument
1122 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) argument
1202 _M_replace_dispatch(iterator __i1, iterator __i2, _Integer __n, _Integer __val, std::__true_type) argument
[all...]
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dcollate_members.cc53 size_t __n) const
54 { return strxfrm(__to, __from, __n); }
69 size_t __n) const
70 { return wcsxfrm(__to, __from, __n); }
H A Dpool_allocator.cc58 // heap too much. Assume that __n is properly aligned. We hold the
61 __pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs) argument
64 size_t __total_bytes = __n * __nobjs;
73 else if (__bytes_left >= __n)
75 __nobjs = (int)(__bytes_left / __n);
76 __total_bytes = __n * __nobjs;
102 size_t __i = __n;
112 return _M_allocate_chunk(__n, __nobjs);
123 return _M_allocate_chunk(__n, __nobjs);
127 // Returns an object of size __n, an
131 _M_refill(size_t __n) argument
[all...]
H A Dstreambuf.cc49 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
50 if (__n > 1)
52 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
55 if (__wrote < __n)
89 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
90 if (__n > 1)
92 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
95 if (__wrote < __n)
H A Dvalarray-inst.cc55 const size_t __n = __a.size(); local
60 return __valarray_product(&__t[0], &__t[0] + __n);
72 size_t __n = __l.size(); local
77 (__builtin_alloca(__n * sizeof (size_t)));
78 __valarray_fill(__t, __n, size_t(0));
91 for (size_t __k = 0; __k < __n; ++__k)
98 ++__t[__n - 1];
99 for (size_t __k2 = __n - 1; __k2; --__k2)
H A Dmt_allocator.cc86 for (size_t __n = 0; __n < _M_bin_size; ++__n)
88 _Bin_record& __bin = _M_bin[__n];
196 for (size_t __n = 0; __n < _M_bin_size; ++__n)
198 _Bin_record& __bin = _M_bin[__n];
216 for (size_t __n = 0; __n < _M_bin_siz
[all...]
/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_iostream.i62 operator<<(long __n);
65 operator<<(unsigned long __n);
68 operator<<(bool __n);
71 operator<<(short __n);
74 operator<<(unsigned short __n);
77 operator<<(int __n);
80 operator<<(unsigned int __n);
83 operator<<(long long __n);
86 operator<<(unsigned long long __n);
117 write(const char_type* __s, streamsize __n);
[all...]
H A Dstd_char_traits.i37 compare(const char_type* __s1, const char_type* __s2, size_t __n);
43 find(const char_type* __s, size_t __n, const char_type& __a);
46 move(char_type* __s1, const char_type* __s2, size_t __n);
49 copy(char_type* __s1, const char_type* __s2, size_t __n);
52 assign(char_type* __s, size_t __n, char_type __a);
93 compare(const char_type* __s1, const char_type* __s2, size_t __n);
99 find(const char_type* __s, size_t __n, const char_type& __a);
102 move(char_type* __s1, const char_type* __s2, int_type __n);
105 copy(char_type* __s1, const char_type* __s2, size_t __n);
108 assign(char_type* __s, size_t __n, char_typ
[all...]
H A Dstd_basic_string.i51 basic_string(const _CharT* __s, size_type __n);
70 append(const basic_string& __str, size_type __pos, size_type __n);
73 append(const _CharT* __s, size_type __n);
76 append(size_type __n, _CharT __c);
82 assign(const basic_string& __str, size_type __pos, size_type __n);
85 assign(const _CharT* __s, size_type __n);
92 size_type __pos2, size_type __n);
95 insert(size_type __pos, const _CharT* __s, size_type __n);
98 insert(size_type __pos, size_type __n, _CharT __c);
101 erase(size_type __pos = 0, size_type __n
[all...]
/macosx-10.10.1/bash-94.1.2/
H A Dlibgnuintl.h174 unsigned long int __n);
176 unsigned long int __n)
178 return libintl_ngettext (__msgid1, __msgid2, __n);
186 unsigned long int __n))
194 const char *__msgid2, unsigned long int __n);
196 const char *__msgid2, unsigned long int __n)
198 return libintl_dngettext (__domainname, __msgid1, __msgid2, __n);
207 unsigned long int __n))
216 unsigned long int __n, int __category);
219 unsigned long int __n, in
175 ngettext(const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
195 dngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
217 dcngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) argument
[all...]
H A Dlibintl.h174 unsigned long int __n);
176 unsigned long int __n)
178 return libintl_ngettext (__msgid1, __msgid2, __n);
186 unsigned long int __n))
194 const char *__msgid2, unsigned long int __n);
196 const char *__msgid2, unsigned long int __n)
198 return libintl_dngettext (__domainname, __msgid1, __msgid2, __n);
207 unsigned long int __n))
216 unsigned long int __n, int __category);
219 unsigned long int __n, in
175 ngettext(const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
195 dngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
217 dcngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) argument
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dlibgnuintl.h174 unsigned long int __n);
176 unsigned long int __n)
178 return libintl_ngettext (__msgid1, __msgid2, __n);
186 unsigned long int __n))
194 const char *__msgid2, unsigned long int __n);
196 const char *__msgid2, unsigned long int __n)
198 return libintl_dngettext (__domainname, __msgid1, __msgid2, __n);
207 unsigned long int __n))
216 unsigned long int __n, int __category);
219 unsigned long int __n, in
175 ngettext(const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
195 dngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) argument
217 dcngettext(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) argument
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Dlibgnuintl.h.in174 unsigned long int __n);
176 unsigned long int __n)
178 return libintl_ngettext (__msgid1, __msgid2, __n);
186 unsigned long int __n))
194 const char *__msgid2, unsigned long int __n);
196 const char *__msgid2, unsigned long int __n)
198 return libintl_dngettext (__domainname, __msgid1, __msgid2, __n);
207 unsigned long int __n))
216 unsigned long int __n, int __category);
219 unsigned long int __n, in
[all...]

Completed in 311 milliseconds

123