HomeSort by relevance Sort by last modified time
    Searched refs:__len (Results 76 - 100 of 253) sorted by null

1 2 34 5 6 7 8 91011

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.c 200 size_type __len = _M_compute_next_size(__n); local
201 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
206 this->_M_reset(__new_start, __new_finish, __new_start + __len);
266 size_type __len = _M_compute_next_size(1); local
267 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
274 this->_M_reset(__new_start, __new_finish, __new_start + __len);
301 size_type __len = _M_compute_next_size(__n); local
302 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len)
358 size_type __len = _M_compute_next_size(__n); local
374 size_type __len = (size_type)(__last - __first); local
393 const difference_type __len = __last - __first; local
423 const size_t __len = size(); local
454 const size_type __len = size(); local
470 const size_type __len = size(); local
499 const size_type __len = size(); local
543 const size_type __len = size(); local
561 const size_type __len = size(); local
    [all...]
_tempbuf.h 49 __get_temporary_buffer(ptrdiff_t __len, _Tp*);
54 inline pair<_Tp*, ptrdiff_t> _STLP_CALL get_temporary_buffer(ptrdiff_t __len) {
55 return __get_temporary_buffer(__len, (_Tp*) 0);
66 get_temporary_buffer(ptrdiff_t __len, _Tp*) {
67 return __get_temporary_buffer(__len, (_Tp*) 0);
_vector.c 87 size_type __len = _M_compute_next_size(__fill_len); local
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
104 _M_set(__new_start, __new_finish, __new_start + __len);
110 size_type __len = _M_compute_next_size(__fill_len); local
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
118 _M_set(__new_start, __new_finish, __new_start + __len);
188 size_type __len = __xlen
    [all...]
_string_hash.h 36 size_t __len = __s.size(); local
38 for ( size_t __i = 0; __i < __len; ++__i)
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_string.c 200 size_type __len = _M_compute_next_size(__n); local
201 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
206 this->_M_reset(__new_start, __new_finish, __new_start + __len);
266 size_type __len = _M_compute_next_size(1); local
267 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
274 this->_M_reset(__new_start, __new_finish, __new_start + __len);
301 size_type __len = _M_compute_next_size(__n); local
302 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len)
358 size_type __len = _M_compute_next_size(__n); local
374 size_type __len = (size_type)(__last - __first); local
393 const difference_type __len = __last - __first; local
423 const size_t __len = size(); local
454 const size_type __len = size(); local
470 const size_type __len = size(); local
499 const size_type __len = size(); local
543 const size_type __len = size(); local
561 const size_type __len = size(); local
    [all...]
_tempbuf.h 49 __get_temporary_buffer(ptrdiff_t __len, _Tp*);
54 inline pair<_Tp*, ptrdiff_t> _STLP_CALL get_temporary_buffer(ptrdiff_t __len) {
55 return __get_temporary_buffer(__len, (_Tp*) 0);
66 get_temporary_buffer(ptrdiff_t __len, _Tp*) {
67 return __get_temporary_buffer(__len, (_Tp*) 0);
_vector.c 87 size_type __len = _M_compute_next_size(__fill_len); local
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
104 _M_set(__new_start, __new_finish, __new_start + __len);
110 size_type __len = _M_compute_next_size(__fill_len); local
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
118 _M_set(__new_start, __new_finish, __new_start + __len);
188 size_type __len = __xlen
    [all...]
_string_hash.h 36 size_t __len = __s.size(); local
38 for ( size_t __i = 0; __i < __len; ++__i)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 68 * @param __len The number of objects of type Tp.
73 * This function tries to obtain storage for @c __len adjacent Tp
85 get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT
89 if (__len > __max)
90 __len = __max;
92 while (__len > 0)
94 _Tp* __tmp = static_cast<_Tp*>(::operator new(__len * sizeof(_Tp),
97 return std::pair<_Tp*, ptrdiff_t>(__tmp, __len);
98 __len /= 2;
stl_heap.h 228 _Distance __len, _Tp __value)
232 while (__secondChild < (__len - 1) / 2)
240 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
305 _Distance __len, _Tp __value, _Compare __comp)
309 while (__secondChild < (__len - 1) / 2)
318 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
402 const _DistanceType __len = __last - __first; local
403 _DistanceType __parent = (__len - 2) / 2
442 const _DistanceType __len = __last - __first; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 68 * @param __len The number of objects of type Tp.
73 * This function tries to obtain storage for @c __len adjacent Tp
85 get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT
89 if (__len > __max)
90 __len = __max;
92 while (__len > 0)
94 _Tp* __tmp = static_cast<_Tp*>(::operator new(__len * sizeof(_Tp),
97 return std::pair<_Tp*, ptrdiff_t>(__tmp, __len);
98 __len /= 2;
stl_heap.h 228 _Distance __len, _Tp __value)
232 while (__secondChild < (__len - 1) / 2)
240 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
305 _Distance __len, _Tp __value, _Compare __comp)
309 while (__secondChild < (__len - 1) / 2)
318 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
402 const _DistanceType __len = __last - __first; local
403 _DistanceType __parent = (__len - 2) / 2
442 const _DistanceType __len = __last - __first; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_tempbuf.h 68 * @param __len The number of objects of type Tp.
73 * This function tries to obtain storage for @c __len adjacent Tp
85 get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT
89 if (__len > __max)
90 __len = __max;
92 while (__len > 0)
94 _Tp* __tmp = static_cast<_Tp*>(::operator new(__len * sizeof(_Tp),
97 return std::pair<_Tp*, ptrdiff_t>(__tmp, __len);
98 __len /= 2;
stl_heap.h 228 _Distance __len, _Tp __value)
232 while (__secondChild < (__len - 1) / 2)
240 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
305 _Distance __len, _Tp __value, _Compare __comp)
309 while (__secondChild < (__len - 1) / 2)
318 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
402 const _DistanceType __len = __last - __first; local
403 _DistanceType __parent = (__len - 2) / 2
442 const _DistanceType __len = __last - __first; local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_tempbuf.h 68 * @param __len The number of objects of type Tp.
73 * This function tries to obtain storage for @c __len adjacent Tp
85 get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT
89 if (__len > __max)
90 __len = __max;
92 while (__len > 0)
94 _Tp* __tmp = static_cast<_Tp*>(::operator new(__len * sizeof(_Tp),
97 return std::pair<_Tp*, ptrdiff_t>(__tmp, __len);
98 __len /= 2;
  /external/bison/lib/
obstack.h 286 int __len = (length); \
287 if (__o->chunk_limit - __o->next_free < __len) \
288 _obstack_newchunk (__o, __len); \
302 int __len = (length); \
303 if (__o->next_free + __len > __o->chunk_limit) \
304 _obstack_newchunk (__o, __len); \
305 memcpy (__o->next_free, where, __len); \
306 __o->next_free += __len; \
312 int __len = (length); \
313 if (__o->next_free + __len + 1 > __o->chunk_limit)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
obstack.h 283 int __len = (length); \
284 if (__o->chunk_limit - __o->next_free < __len) \
285 _obstack_newchunk (__o, __len); \
299 int __len = (length); \
300 if (__o->next_free + __len > __o->chunk_limit) \
301 _obstack_newchunk (__o, __len); \
302 memcpy (__o->next_free, where, __len); \
303 __o->next_free += __len; \
309 int __len = (length); \
310 if (__o->next_free + __len + 1 > __o->chunk_limit)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
obstack.h 283 int __len = (length); \
284 if (__o->chunk_limit - __o->next_free < __len) \
285 _obstack_newchunk (__o, __len); \
299 int __len = (length); \
300 if (__o->next_free + __len > __o->chunk_limit) \
301 _obstack_newchunk (__o, __len); \
302 memcpy (__o->next_free, where, __len); \
303 __o->next_free += __len; \
309 int __len = (length); \
310 if (__o->next_free + __len + 1 > __o->chunk_limit)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
obstack.h 325 int __len = (length); \
326 if (__o->chunk_limit - __o->next_free < __len) \
327 _obstack_newchunk (__o, __len); \
338 int __len = (length); \
339 if (__o->next_free + __len > __o->chunk_limit) \
340 _obstack_newchunk (__o, __len); \
341 _obstack_memcpy (__o->next_free, (where), __len); \
342 __o->next_free += __len; \
348 int __len = (length); \
349 if (__o->next_free + __len + 1 > __o->chunk_limit)
    [all...]
  /toolchain/binutils/binutils-2.25/include/
obstack.h 325 int __len = (length); \
326 if (__o->chunk_limit - __o->next_free < __len) \
327 _obstack_newchunk (__o, __len); \
338 int __len = (length); \
339 if (__o->next_free + __len > __o->chunk_limit) \
340 _obstack_newchunk (__o, __len); \
341 _obstack_memcpy (__o->next_free, (where), __len); \
342 __o->next_free += __len; \
348 int __len = (length); \
349 if (__o->next_free + __len + 1 > __o->chunk_limit)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
wchar2.h 455 size_t __len, mbstate_t *__restrict __ps,
460 size_t __len, mbstate_t *__restrict __ps),
465 size_t __len, mbstate_t *__restrict __ps,
472 size_t __len, mbstate_t *__restrict __ps))
476 if (!__builtin_constant_p (__len))
477 return __mbsrtowcs_chk (__dst, __src, __len, __ps,
480 if (__len > __bos (__dst) / sizeof (wchar_t))
481 return __mbsrtowcs_chk_warn (__dst, __src, __len, __ps,
484 return __mbsrtowcs_alias (__dst, __src, __len, __ps);
490 size_t __len, mbstate_t *__restrict __ps
    [all...]
fcntl.h 277 __off64_t *__offout, size_t __len,
281 extern ssize_t tee (int __fdin, int __fdout, size_t __len,
286 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
290 __off64_t __len),
298 __off64_t __len);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
wchar2.h 459 size_t __len, mbstate_t *__restrict __ps,
464 size_t __len, mbstate_t *__restrict __ps),
469 size_t __len, mbstate_t *__restrict __ps,
476 size_t __len, mbstate_t *__restrict __ps))
480 if (!__builtin_constant_p (__len))
481 return __mbsrtowcs_chk (__dst, __src, __len, __ps,
484 if (__len > __bos (__dst) / sizeof (wchar_t))
485 return __mbsrtowcs_chk_warn (__dst, __src, __len, __ps,
488 return __mbsrtowcs_alias (__dst, __src, __len, __ps);
494 size_t __len, mbstate_t *__restrict __ps
    [all...]
fcntl.h 292 __off64_t *__offout, size_t __len,
299 extern ssize_t tee (int __fdin, int __fdout, size_t __len,
307 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
311 __off64_t __len),
319 __off64_t __len);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
wchar2.h 459 size_t __len, mbstate_t *__restrict __ps,
464 size_t __len, mbstate_t *__restrict __ps),
469 size_t __len, mbstate_t *__restrict __ps,
476 size_t __len, mbstate_t *__restrict __ps))
480 if (!__builtin_constant_p (__len))
481 return __mbsrtowcs_chk (__dst, __src, __len, __ps,
484 if (__len > __bos (__dst) / sizeof (wchar_t))
485 return __mbsrtowcs_chk_warn (__dst, __src, __len, __ps,
488 return __mbsrtowcs_alias (__dst, __src, __len, __ps);
494 size_t __len, mbstate_t *__restrict __ps
    [all...]

Completed in 885 milliseconds

1 2 34 5 6 7 8 91011