Lines Matching defs:ext
261 * mei_ext_last - check if the ext is the last one in the TLV list
264 * @ext: a meta header on the list
266 * Return: true if ext is the last header on the list
269 struct mei_ext_hdr *ext)
271 return (u8 *)ext >= (u8 *)meta + sizeof(*meta) + (meta->size * 4);
277 * @ext: current extend header
282 * Return: The following extend header after @ext
284 static inline struct mei_ext_hdr *mei_ext_next(struct mei_ext_hdr *ext)
286 return (struct mei_ext_hdr *)(ext->hdr + (ext->length * 4));