Home | History | Annotate | Download | only in src

Lines Matching full:__bytes

60 inline char* __stlp_new_chunk(size_t __bytes) {
61 void *__chunk = _STLP_CHECK_NULL_ALLOC(::operator new(__bytes, __FILE__, __LINE__));
68 inline char* __stlp_new_chunk(size_t __bytes) {
70 void *__chunk = _STLP_VENDOR_CSTD::malloc(__bytes);
78 inline char* __stlp_new_chunk(size_t __bytes)
79 { return __STATIC_CAST(char*, _STLP_STD::__stl_new(__bytes)); }
120 #define _S_FREELIST_INDEX(__bytes) ((__bytes - size_t(1)) >> (int)_ALIGN_SHIFT)
247 static inline size_t _STLP_CALL _S_round_up(size_t __bytes)
248 { return (((__bytes) + (size_t)_ALIGN-1) & ~((size_t)_ALIGN - 1)); }
797 static size_t _S_round_up(size_t __bytes)
798 { return (((__bytes) + (int)_S_ALIGN - 1) & ~((int)_S_ALIGN - 1)); }
799 static size_t _S_freelist_index(size_t __bytes)
800 { return (((__bytes) + (int)_S_ALIGN - 1) / (int)_S_ALIGN - 1); }