Home | History | Annotate | Download | only in allocator

Lines Matching refs:size

20 SHIM_ALWAYS_EXPORT void* __wrap_calloc(size_t n, size_t size) {
21 return ShimCalloc(n, size, nullptr);
28 SHIM_ALWAYS_EXPORT void* __wrap_malloc(size_t size) {
29 return ShimMalloc(size, nullptr);
32 SHIM_ALWAYS_EXPORT void* __wrap_memalign(size_t align, size_t size) {
33 return ShimMemalign(align, size, nullptr);
38 size_t size) {
39 return ShimPosixMemalign(res, align, size);
42 SHIM_ALWAYS_EXPORT void* __wrap_pvalloc(size_t size) {
43 return ShimPvalloc(size);
46 SHIM_ALWAYS_EXPORT void* __wrap_realloc(void* address, size_t size) {
47 return ShimRealloc(address, size, nullptr);
50 SHIM_ALWAYS_EXPORT void* __wrap_valloc(size_t size) {
51 return ShimValloc(size, nullptr);