Lines Matching refs:bytes
32 extern void* libc_gwp_asan_malloc(size_t bytes);
44 void* malloc(size_t bytes)
46 if (bytes >= MALLOC_REPORT_LIMIT) {
58 return dispatch_table->malloc(bytes);
62 return libc_gwp_asan_malloc(bytes);
64 return MuslFunc(malloc)(bytes);
68 return libc_gwp_asan_malloc(bytes);
70 return MuslFunc(malloc)(bytes);
72 return dispatch_table->malloc(bytes);
75 return libc_gwp_asan_malloc(bytes);
77 return MuslFunc(malloc)(bytes);