Home | History | Annotate | Download | only in src

Lines Matching defs:__a

842   static void * allocate(size_t& __n, __state_type* __a);
845 static void deallocate(void *__p, size_t __n, __state_type* __a);
935 char *_Pthread_alloc_impl::_S_chunk_alloc(size_t __p_size, size_t &__nobjs, _Pthread_alloc_per_thread_state *__a) {
960 __obj * volatile * __my_free_list = __a
985 return _S_chunk_alloc(__p_size, __nobjs, __a);
994 __state_type* __a;
1001 __a = _S_get_per_thread_state();
1003 __my_free_list = __a->__free_list + _S_freelist_index(__n);
1006 void *__r = __a->_M_refill(__n);
1018 __state_type* __a;
1025 __a = _S_get_per_thread_state();
1027 __my_free_list = __a->__free_list + _S_freelist_index(__n);
1034 void *_Pthread_alloc_impl::allocate(size_t& __n, __state_type* __a) {
1046 _STLP_auto_lock __lock(__a->_M_lock);
1048 __my_free_list = __a->__free_list + _S_freelist_index(__n);
1051 void *__r = __a->_M_refill(__n);
1059 void _Pthread_alloc_impl::deallocate(void *__p, size_t __n, __state_type* __a) {
1071 _STLP_auto_lock __lock(__a->_M_lock);
1073 __my_free_list = __a->__free_list + _S_freelist_index(__n);
1106 void * _STLP_CALL _Pthread_alloc::allocate(size_t& __n, __state_type* __a)
1107 { return _Pthread_alloc_impl::allocate(__n, __a); }
1108 void _STLP_CALL _Pthread_alloc::deallocate(void *__p, size_t __n, __state_type* __a)
1109 { _Pthread_alloc_impl::deallocate(__p, __n, __a); }