Lines Matching refs:size
22 NODISCARD void* operator new(size_t size) in operator new() argument
24 return malloc(size); in operator new()
27 NODISCARD void* operator new[](size_t size) in operator new[]() argument
29 return malloc(size); in operator new[]()
32 NODISCARD void* operator new(std::size_t size, const std::nothrow_t& tag) NOEXCEPT in operator new() argument
34 return malloc(size); in operator new()
37 NODISCARD void* operator new[](std::size_t size, const std::nothrow_t& tag) NOEXCEPT in operator new[]() argument
39 return malloc(size); in operator new[]()
43 NODISCARD void* operator new(size_t size, std::align_val_t al) in operator new() argument
45 return aligned_alloc(static_cast<size_t>(al), size); in operator new()
48 NODISCARD void* operator new[](std::size_t size, std::align_val_t al) in operator new[]() argument
50 return aligned_alloc(static_cast<size_t>(al), size); in operator new[]()
53 NODISCARD void* operator new(std::size_t size, std::align_val_t al, in operator new() argument
56 return aligned_alloc(static_cast<size_t>(al), size); in operator new()
59 NODISCARD void* operator new[](std::size_t size, std::align_val_t al, in operator new[]() argument
62 return aligned_alloc(static_cast<size_t>(al), size); in operator new[]()