Home
last modified time | relevance | path

Searched refs:__old_sz (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp847 static void * reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
1078 void *_Pthread_alloc_impl::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) { in reallocate() argument
1082 if (__old_sz > _MAX_BYTES && __new_sz > _MAX_BYTES) { in reallocate()
1086 if (_S_round_up(__old_sz) == _S_round_up(__new_sz)) return __p; in reallocate()
1088 __copy_sz = __new_sz > __old_sz? __old_sz : __new_sz; in reallocate()
1090 deallocate(__p, __old_sz); in reallocate()
1110 void * _STLP_CALL _Pthread_alloc::reallocate(void *__p, size_t __old_sz, size_t& __new_sz) in reallocate() argument
1111 { return _Pthread_alloc_impl::reallocate(__p, __old_sz, __new_sz); } in reallocate()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_pthread_alloc.h88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dstring1848 void __grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
1850 void __grow_by_and_replace(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
2331 (size_type __old_cap, size_type __delta_cap, size_type __old_sz,
2348 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
2356 __old_sz = __n_copy + __n_add + __sec_cp_sz;
2357 __set_long_size(__old_sz);
2358 traits_type::assign(__p[__old_sz], value_type());
2363 …rT, _Traits, _Allocator>::__grow_by(size_type __old_cap, size_type __delta_cap, size_type __old_sz,
2378 size_type __sec_cp_sz = __old_sz - __n_del - __n_copy;
2800 size_type __old_sz = size();
[all …]