Home
last modified time | relevance | path

Searched refs:bytes_until_buffer_end (Results 1 – 1 of 1) sorted by relevance

/third_party/backends/backend/
Dhp5590_low.c655 unsigned int bytes_until_buffer_end; in hp5590_bulk_read() local
824 bytes_until_buffer_end = bulk_read_state->buffer_end_ptr in hp5590_bulk_read()
826 if (bytes_until_buffer_end <= size) in hp5590_bulk_read()
830 memcpy (bytes, bulk_read_state->buffer_out_ptr, bytes_until_buffer_end); in hp5590_bulk_read()
833 if (bytes_until_buffer_end < size) in hp5590_bulk_read()
836 memcpy (bytes + bytes_until_buffer_end, in hp5590_bulk_read()
838 size - bytes_until_buffer_end); in hp5590_bulk_read()
839 bulk_read_state->buffer_out_ptr += size - bytes_until_buffer_end; in hp5590_bulk_read()