Lines Matching refs:malloc
8 extern "C" void *malloc(size_t);
32 int *x = (int *)malloc(sizeof(int)); in testPlacementNew()
56 int *x = (int *)malloc(sizeof(int)); in testCustomNewMalloc()
86 return new PtrWrapper(static_cast<int *>(malloc(4))); // no-warning in testNewInvalidation()
91 new (w) PtrWrapper(static_cast<int *>(malloc(4))); // no-warning in testNewInvalidationPlacement()
96 return new (int *)(static_cast<int *>(malloc(4))); // no-warning in testNewInvalidationScalar()
101 new (p) (int *)(static_cast<int *>(malloc(4))); // no-warning in testNewInvalidationScalarPlacement()
134 int *x = (int *)malloc(sizeof(int)); in testDeleteMallocked()
140 int *p = (int *)malloc(sizeof(int)); in testDeleteOpAfterFree()
146 int *p = (int *)malloc(sizeof(int)); in testDeleteAfterFree()
152 int *p = (int *)malloc(sizeof(int)); in testStandardPlacementNewAfterFree()
158 int *p = (int *)malloc(sizeof(int)); in testCustomPlacementNewAfterFree()