| 290 | char * reallocate ( char * ptr, uint64_t size, uint64_t nsize ); |
| 291 | __forceinline int depth() const { return shoe.depth(); } |
| 292 | __forceinline bool isOwnPtr( char * ptr, uint64_t size ) const { |
| 293 | if ( size<=maxShoeAllocation ) |
| 294 | return shoe.isOwnPtr(ptr,uint32_t(size)); |
| 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)); |