Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp320 _Obj * _STLP_VOLATILE * __my_free_list = _S_free_list + _S_FREELIST_INDEX(__n); in _M_allocate() local
328 if ( (__r = *__my_free_list) != 0 ) { in _M_allocate()
329 *__my_free_list = __r->_M_next; in _M_allocate()
341 _Obj * _STLP_VOLATILE * __my_free_list = _S_free_list + _S_FREELIST_INDEX(__n); in _M_deallocate() local
346 __pobj->_M_next = *__my_free_list; in _M_deallocate()
347 *__my_free_list = __pobj; in _M_deallocate()
386 _Obj* _STLP_VOLATILE* __my_free_list = _S_free_list + _S_FREELIST_INDEX(__bytes_left); in _S_chunk_alloc() local
387 __REINTERPRET_CAST(_Obj*, _S_start_free)->_M_next = *__my_free_list; in _S_chunk_alloc()
388 *__my_free_list = __REINTERPRET_CAST(_Obj*, _S_start_free); in _S_chunk_alloc()
399 _Obj* _STLP_VOLATILE* __my_free_list; in _S_chunk_alloc() local
[all …]