MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_slice_pool_destroy

Function acl_slice_pool_destroy

lib_acl/src/stdlib/memory/acl_slice.c:1254–1264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1252}
1253
1254void acl_slice_pool_destroy(ACL_SLICE_POOL *asp)
1255{
1256 int i;
1257
1258 for (i = 0; i < asp->nslice; i++) {
1259 acl_slice_destroy(asp->slices[i]);
1260 }
1261
1262 __slice_free_fn(__FILE__, __LINE__, asp->slices);
1263 __slice_free_fn(__FILE__, __LINE__, asp);
1264}
1265
1266int acl_slice_pool_used(ACL_SLICE_POOL *asp)
1267{

Callers 4

fifo_testFunction · 0.85
htable_iterFunction · 0.85
mem_slice_freeFunction · 0.85

Calls 1

acl_slice_destroyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…