Home
last modified time | relevance | path

Searched refs:XAF_CHK_RANGE (Results 1 – 2 of 2) sorted by relevance

/device/linaro/hikey/hifi/xaf/host-apf/proxy/
Dxaf-api.c208 XAF_CHK_RANGE(ninbuf, 0, XAF_MAX_INBUFS); in xaf_comp_create()
209 XAF_CHK_RANGE(noutbuf, 0, 1); in xaf_comp_create()
210 XAF_CHK_RANGE(comp_type, XAF_DECODER, XAF_POST_PROC); in xaf_comp_create()
310 XAF_CHK_RANGE(num_param, 1, XAF_MAX_CONFIG_PARAMS); in xaf_comp_set_config()
350 XAF_CHK_RANGE(num_param, 1, XAF_MAX_CONFIG_PARAMS); in xaf_comp_get_config()
472 XAF_CHK_RANGE(flag, XAF_START_FLAG, XAF_NEED_OUTPUT_FLAG); in xaf_comp_process()
473 if (flag == XAF_INPUT_READY_FLAG) XAF_CHK_RANGE(length, 0, XAF_INBUF_SIZE); in xaf_comp_process()
567 XAF_CHK_RANGE(num_buf, 2, 4); in xaf_connect()
/device/linaro/hikey/hifi/xaf/host-apf/include/
Dxaf-api.h125 #define XAF_CHK_RANGE(val, min, max) \ macro