Lines Matching refs:current
105 blob->current = blob->data + ALIGN(blob->current - blob->data, alignment); in blob_reader_align()
255 blob->current = data; in blob_reader_init()
269 if (blob->current <= blob->end && blob->end - blob->current >= size) in ensure_can_read()
285 ret = blob->current; in blob_read_bytes()
287 blob->current += size; in blob_read_bytes()
308 blob->current += size; in blob_skip_bytes()
336 if (blob->current >= blob->end) { in BLOB_READ_TYPE()
344 nul = memchr(blob->current, 0, blob->end - blob->current); in BLOB_READ_TYPE()
351 size = nul - blob->current + 1; in BLOB_READ_TYPE()
355 ret = (char *) blob->current; in BLOB_READ_TYPE()
357 blob->current += size; in BLOB_READ_TYPE()