Home | History | Annotate | Download | only in src

Lines Matching refs:__total_bytes

367   size_t __total_bytes = _p_size * __nobjs;
371 if (__bytes_left >= __total_bytes) {
373 _S_start_free += __total_bytes;
379 __total_bytes = _p_size * __nobjs;
381 _S_start_free += __total_bytes;
392 size_t __bytes_to_get = 2 * __total_bytes + _S_round_up(_S_heap_size) + _STLP_OFFSET;
416 __bytes_to_get = __total_bytes + _STLP_OFFSET;
542 __add_atomic_t __total_bytes = __STATIC_CAST(__add_atomic_t, _p_size) * __nobjs;
551 if ((__bytes_left < __total_bytes) && (__bytes_left >= __STATIC_CAST(__add_atomic_t, _p_size))) {
555 __total_bytes = __STATIC_CAST(__add_atomic_t, _p_size) * __nobjs;
556 __bytes_left -= __total_bytes;
557 __buf_start += __total_bytes;
559 else if (__bytes_left >= __total_bytes) {
562 __bytes_left -= __total_bytes;
563 __buf_start += __total_bytes;
588 __add_atomic_t __bytes_to_get = 2 * __total_bytes +
605 __total_bytes = __nobjs * __STATIC_CAST(__add_atomic_t, _p_size);
606 size_t __bytes_left = __i - __total_bytes;
609 _S_free_list[_S_FREELIST_INDEX(__rounded_down)].push(__REINTERPRET_CAST(_Obj*, __REINTERPRET_CAST(char*, __p) + __total_bytes));
624 __bytes_to_get = __total_bytes + _STLP_OFFSET;
643 if (__bytes_to_get > __total_bytes) {
645 _FreeBlockHeader* __freeblock = __REINTERPRET_CAST(_FreeBlockHeader*, __result + __total_bytes);
939 size_t __total_bytes;
944 __total_bytes = __p_size * __nobjs;
946 if (__bytes_left >= __total_bytes) {
948 _S_start_free += __total_bytes;
952 __total_bytes = __p_size * __nobjs;
954 _S_start_free += __total_bytes;
957 size_t __bytes_to_get = 2 * __total_bytes + _S_round_up(_S_heap_size);