| 171 | } |
| 172 | |
| 173 | NPY_NO_EXPORT void |
| 174 | npy_free_cache(void * p, npy_uintp sz) |
| 175 | { |
| 176 | _npy_free_cache(p, sz, NBUCKETS, datacache, &PyDataMem_FREE); |
| 177 | } |
| 178 | |
| 179 | /* |
| 180 | * dimension/stride cache, uses a different allocator and is always a multiple |
nothing calls this directly
no test coverage detected