Lines Matching defs:head
202 const struct sof_ext_man_header *head;
204 head = (struct sof_ext_man_header *)fw->data;
208 * it prevents from reading unallocated memory from `head` in following
211 if (fw->size < sizeof(*head))
218 if (head->magic == SOF_EXT_MAN_MAGIC_NUMBER)
219 return head->full_size;
230 const struct sof_ext_man_header *head;
236 head = (struct sof_ext_man_header *)fw->data;
237 remaining = head->full_size - head->header_size;
246 head->header_version)) {
248 head->header_version, SOF_EXT_MAN_VERSION);
253 iptr = (uintptr_t)fw->data + head->header_size;