| 242 | } |
| 243 | |
| 244 | void acl_allocator_mem_free(const char *filename, int line, |
| 245 | ACL_ALLOCATOR *allocator, acl_mem_type type, void *obj) |
| 246 | { |
| 247 | const char *myname = "acl_allocator_mem_free"; |
| 248 | ACL_MEM_POOL *pool; |
| 249 | |
| 250 | CHECK_TYPE(type); |
| 251 | |
| 252 | pool = allocator->MemPools[type]; |
| 253 | pool->nfree++; |
| 254 | allocator->mem_free_fn(filename, line, allocator, pool, obj); |
| 255 | } |
| 256 | |
| 257 | /* Find the best fit ACL_MEM_TYPE_X_BUF type */ |
| 258 |
no outgoing calls
no test coverage detected
searching dependent graphs…