Lines Matching defs:blob
27 * @blob: data to unpack (NOT NULL)
28 * @bsize: size of blob
34 static struct table_header *unpack_table(char *blob, size_t bsize)
46 th.td_id = get_unaligned_be16(blob) - 1;
49 th.td_flags = get_unaligned_be16(blob + 2);
50 th.td_lolen = get_unaligned_be32(blob + 8);
51 blob += sizeof(struct table_header);
70 memcpy(table->td_data, blob, th.td_lolen);
72 UNPACK_ARRAY(table->td_data, blob, th.td_lolen,
75 UNPACK_ARRAY(table->td_data, blob, th.td_lolen,
305 * @blob: aligned serialized stream of data to unpack (NOT NULL)
311 * Assumes the dfa @blob stream has been aligned on a 8 byte boundary
315 struct aa_dfa *aa_dfa_unpack(void *blob, size_t size, int flags)
319 char *data = blob;