Lines Matching refs:__result
133 void *__result = malloc(__n);
134 if ( 0 == __result ) {
148 __result = malloc(__n);
149 if ( __result )
150 return __result;
153 return __result;
366 char* __result;
372 __result = _S_start_free;
374 return __result;
380 __result = _S_start_free;
382 return __result;
441 _Obj* __result;
446 __result = __REINTERPRET_CAST(_Obj*, __chunk);
454 return __result;
515 _Obj* __result = __REINTERPRET_CAST(_Obj*, __chunk);
516 _Obj* __cur_item = __result;
522 return __result;
541 char* __result = 0;
553 __result = __buf_start;
561 __result = __buf_start;
568 if ((__result != 0) && (__bytes_left >= (__add_atomic_t)sizeof(_FreeBlockHeader))) {
583 if (__result != 0)
584 return __result;
593 __result = __stlp_new_chunk(__bytes_to_get);
625 __result = __stlp_new_chunk(__bytes_to_get);
632 _STLP_VERBOSE_ASSERT(((__REINTERPRET_CAST(size_t, __result) & __STATIC_CAST(size_t, _ALIGN - 1)) == 0),
638 _S_chunks.push(__REINTERPRET_CAST(_Obj*, __result));
639 __result += _ALIGN;
645 _FreeBlockHeader* __freeblock = __REINTERPRET_CAST(_FreeBlockHeader*, __result + __total_bytes);
646 __freeblock->_M_end = __result + __bytes_to_get;
649 return __result;
858 __obj * __result;
869 __result = (__obj *)__chunk;
881 return __result;
894 _Pthread_alloc_per_thread_state *__result = _S_free_per_thread_states;
896 return __result;
905 __state_type* __result;
907 if (_S_key_initialized && (__result = (__state_type*) pthread_getspecific(_S_key)))
908 return __result;
919 __result = _S_new_per_thread_state();
920 __ret_code = pthread_setspecific(_S_key, __result);
929 return __result;
938 char * __result;
947 __result = _S_start_free;
949 return __result;
953 __result = _S_start_free;
955 return __result;
993 __obj * __result;
1004 __result = *__my_free_list;
1005 if (__result == 0) {
1009 *__my_free_list = __result->__free_list_link;
1010 return __result;
1037 __obj * __result;
1049 __result = *__my_free_list;
1050 if (__result == 0) {
1054 *__my_free_list = __result->__free_list_link;
1055 return __result;
1079 void * __result;
1087 __result = allocate(__new_sz);
1089 memcpy(__result, __p, __copy_sz);
1091 return __result;