Lines Matching refs:raw

938 	const struct wmfw_adsp_alg_data *raw;  in wm_coeff_parse_alg()  local
943 raw = (const struct wmfw_adsp_alg_data *)*data; in wm_coeff_parse_alg()
944 *data = raw->data; in wm_coeff_parse_alg()
946 blk->id = le32_to_cpu(raw->id); in wm_coeff_parse_alg()
947 blk->name = raw->name; in wm_coeff_parse_alg()
948 blk->name_len = strlen(raw->name); in wm_coeff_parse_alg()
949 blk->ncoeff = le32_to_cpu(raw->ncoeff); in wm_coeff_parse_alg()
952 blk->id = wm_coeff_parse_int(sizeof(raw->id), data); in wm_coeff_parse_alg()
956 blk->ncoeff = wm_coeff_parse_int(sizeof(raw->ncoeff), data); in wm_coeff_parse_alg()
968 const struct wmfw_adsp_coeff_data *raw; in wm_coeff_parse_coeff() local
975 raw = (const struct wmfw_adsp_coeff_data *)*data; in wm_coeff_parse_coeff()
976 *data = *data + sizeof(raw->hdr) + le32_to_cpu(raw->hdr.size); in wm_coeff_parse_coeff()
978 blk->offset = le16_to_cpu(raw->hdr.offset); in wm_coeff_parse_coeff()
979 blk->mem_type = le16_to_cpu(raw->hdr.type); in wm_coeff_parse_coeff()
980 blk->name = raw->name; in wm_coeff_parse_coeff()
981 blk->name_len = strlen(raw->name); in wm_coeff_parse_coeff()
982 blk->ctl_type = le16_to_cpu(raw->ctl_type); in wm_coeff_parse_coeff()
983 blk->flags = le16_to_cpu(raw->flags); in wm_coeff_parse_coeff()
984 blk->len = le32_to_cpu(raw->len); in wm_coeff_parse_coeff()
988 blk->offset = wm_coeff_parse_int(sizeof(raw->hdr.offset), &tmp); in wm_coeff_parse_coeff()
989 blk->mem_type = wm_coeff_parse_int(sizeof(raw->hdr.type), &tmp); in wm_coeff_parse_coeff()
990 length = wm_coeff_parse_int(sizeof(raw->hdr.size), &tmp); in wm_coeff_parse_coeff()
995 blk->ctl_type = wm_coeff_parse_int(sizeof(raw->ctl_type), &tmp); in wm_coeff_parse_coeff()
996 blk->flags = wm_coeff_parse_int(sizeof(raw->flags), &tmp); in wm_coeff_parse_coeff()
997 blk->len = wm_coeff_parse_int(sizeof(raw->len), &tmp); in wm_coeff_parse_coeff()
999 *data = *data + sizeof(raw->hdr) + length; in wm_coeff_parse_coeff()