Home | History | Annotate | Download | only in src

Lines Matching refs:_S_start_free

286   static char* _S_start_free;
368 size_t __bytes_left = _S_end_free - _S_start_free;
372 __result = _S_start_free;
373 _S_start_free += __total_bytes;
380 __result = _S_start_free;
381 _S_start_free += __total_bytes;
387 __REINTERPRET_CAST(_Obj*, _S_start_free)->_M_next = *__my_free_list;
388 *__my_free_list = __REINTERPRET_CAST(_Obj*, _S_start_free);
389 _S_start_free = _S_end_free = 0;
395 _S_start_free = __stlp_new_chunk(__bytes_to_get);
409 _S_start_free = __REINTERPRET_CAST(char*, __p);
410 _S_end_free = _S_start_free + __i;
417 _S_start_free = __stlp_new_chunk(__bytes_to_get);
423 __REINTERPRET_CAST(_Obj*, _S_start_free)->_M_next = _S_chunks;
424 _S_chunks = __REINTERPRET_CAST(_Obj*, _S_start_free);
426 _S_end_free = _S_start_free + __bytes_to_get;
427 _S_start_free += _STLP_OFFSET;
476 _S_start_free = _S_end_free = 0;
723 char *__node_alloc_impl::_S_start_free = 0;
806 static char *_S_start_free;
945 __bytes_left = _S_end_free - _S_start_free;
947 __result = _S_start_free;
948 _S_start_free += __total_bytes;
953 __result = _S_start_free;
954 _S_start_free += __total_bytes;
961 ((__obj *)_S_start_free) -> __free_list_link = *__my_free_list;
962 *__my_free_list = (__obj *)_S_start_free;
972 _S_start_free = (char *)memalign(__cache_line_size, __bytes_to_get);
973 if (0 == _S_start_free) {
974 _S_start_free = (char *)__malloc_alloc::allocate(__bytes_to_get);
978 _S_start_free = (char *)__malloc_alloc::allocate(__bytes_to_get);
981 _S_end_free = _S_start_free + __bytes_to_get;
1098 char *_Pthread_alloc_impl::_S_start_free = 0;