Searched refs:_p_size (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/stlport/src/ |
D | allocators.cpp | 365 char* __node_alloc_impl::_S_chunk_alloc(size_t _p_size, int& __nobjs) { in _S_chunk_alloc() argument 367 size_t __total_bytes = _p_size * __nobjs; in _S_chunk_alloc() 377 if (__bytes_left >= _p_size) { in _S_chunk_alloc() 378 __nobjs = (int)(__bytes_left / _p_size); in _S_chunk_alloc() 379 __total_bytes = _p_size * __nobjs; in _S_chunk_alloc() 404 for (size_t __i = _p_size; __i <= (size_t)_MAX_BYTES; __i += (size_t)_ALIGN) { in _S_chunk_alloc() 411 return _S_chunk_alloc(_p_size, __nobjs); in _S_chunk_alloc() 428 return _S_chunk_alloc(_p_size, __nobjs); in _S_chunk_alloc() 534 char* __node_alloc_impl::_S_chunk_alloc(size_t _p_size, int& __nobjs) { in _S_chunk_alloc() argument 542 __add_atomic_t __total_bytes = __STATIC_CAST(__add_atomic_t, _p_size) * __nobjs; in _S_chunk_alloc() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _rope.h | 378 _Rope_RopeRep(_Tag __t, unsigned char __d, bool __b, size_t _p_size, 381 _M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0), _M_size(__a, _p_size) { 470 _Rope_RopeLeaf( _CharT* __d, size_t _p_size, allocator_type __a) 471 : _Rope_RopeRep<_CharT,_Alloc>(_RopeRep::_S_leaf, 0, true, _p_size, __a), 473 _STLP_ASSERT(_p_size > 0) 540 _Rope_RopeFunction(char_producer<_CharT>* __f, size_t _p_size, 542 : _Rope_RopeRep<_CharT,_Alloc>(_RopeRep::_S_function, 0, true, _p_size, __a), _M_fn(__f) 544 { _STLP_ASSERT(_p_size > 0) } 1198 size_t _p_size, allocator_type __a) { 1202 new(__space) _RopeLeaf(__s, _p_size, __a); [all …]
|
D | _valarray.c | 109 size_t _p_size = 0; variable 112 if (__mask[__i]) ++_p_size; 115 valarray<_Tp> __tmp(_p_size, _NoInit());
|
D | _rope.c | 79 size_t _p_size = _M_size._M_data + 1; in _M_free_c_string() local 80 _STLP_STD::_Destroy_Range(__cstr, __cstr + _p_size); in _M_free_c_string() 81 _M_size.deallocate(__cstr, _p_size); in _M_free_c_string()
|