| 295 | return (bigStuff.find(ptr)!=bigStuff.end()); |
| 296 | } |
| 297 | __forceinline bool isAllocatedPtr( char * ptr, uint64_t size ) const { |
| 298 | if ( size<=maxShoeAllocation ) |
| 299 | return shoe.isAllocatedPtr(ptr,uint32_t(size)); |
| 300 | return (bigStuff.find(ptr)!=bigStuff.end()); |
| 301 | } |
| 302 | uint64_t bytesAllocated() const { return totalAllocated; } |
| 303 | uint64_t maxBytesAllocated() const { return maxAllocated; } |
| 304 | uint64_t totalAlignedMemoryAllocated() const; |
nothing calls this directly
no test coverage detected