Home
last modified time | relevance | path

Searched refs:xf_pool_t (Results 1 – 4 of 4) sorted by relevance

/device/linaro/hikey/hifi/xaf/host-apf/include/
Dxf-proto.h41 typedef struct xf_pool xf_pool_t; typedef
73 …ol_alloc(xf_proxy_t *proxy, u32 number, u32 length, xf_pool_type_t type, xf_pool_t **pool, s32 id,
75 extern void xf_pool_free(xf_pool_t *pool, s32 id, xaf_mem_free_fxn_t);
76 extern xf_buffer_t * xf_buffer_get(xf_pool_t *pool);
Dxaf-structs.h53 xf_pool_t *inpool;
54 xf_pool_t *outpool;
Dxf-proxy.h100 xf_pool_t *pool;
170 xf_pool_t *aux;
/device/linaro/hikey/hifi/xaf/host-apf/proxy/
Dxf-proxy.c564 int xf_pool_alloc(xf_proxy_t *proxy, u32 number, u32 length, xf_pool_type_t type, xf_pool_t **pool,… in xf_pool_alloc()
567 xf_pool_t *p; in xf_pool_alloc()
582 p = xaf_malloc(offset_of(xf_pool_t, buffer) + number * sizeof(xf_buffer_t), id); in xf_pool_alloc()
629 void xf_pool_free(xf_pool_t *pool, s32 id, xaf_mem_free_fxn_t xaf_free) in xf_pool_free()
651 xf_buffer_t * xf_buffer_get(xf_pool_t *pool) in xf_buffer_get()
675 xf_pool_t *pool = buffer->link.pool; in xf_buffer_put()