Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp368 size_t __bytes_left = _S_end_free - _S_start_free; in _S_chunk_alloc() local
370 if (__bytes_left > 0) { in _S_chunk_alloc()
371 if (__bytes_left >= __total_bytes) { 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()
386 _Obj* _STLP_VOLATILE* __my_free_list = _S_free_list + _S_FREELIST_INDEX(__bytes_left); in _S_chunk_alloc()
549 __add_atomic_t __bytes_left = __block->_M_end - __buf_start; in _S_chunk_alloc() local
551 … if ((__bytes_left < __total_bytes) && (__bytes_left >= __STATIC_CAST(__add_atomic_t, _p_size))) { in _S_chunk_alloc()
554 __nobjs = (int)(__bytes_left/_p_size); in _S_chunk_alloc()
556 __bytes_left -= __total_bytes; in _S_chunk_alloc()
[all …]