Home | History | Annotate | Download | only in src

Lines Matching full:__next_obj

443   _Obj* __next_obj;
447 *__my_free_list = __next_obj = __REINTERPRET_CAST(_Obj*, __chunk + __n);
449 __current_obj = __next_obj;
450 __next_obj = __REINTERPRET_CAST(_Obj*, __REINTERPRET_CAST(char*, __next_obj) + __n);
451 __current_obj->_M_next = __next_obj;
453 __next_obj->_M_next = 0;
859 __obj * __current_obj, * __next_obj;
870 *__my_free_list = __next_obj = (__obj *)(__chunk + __n);
872 __current_obj = __next_obj;
873 __next_obj = (__obj *)((char *)__next_obj + __n);
878 __current_obj -> __free_list_link = __next_obj;