Lines Matching refs:bytes_to_copy
190 uint32_t word_to_write, padding, bytes_to_copy; in flash_nios2_qspi_write_block() local
202 bytes_to_copy = NIOS2_WRITE_BLOCK_SIZE; in flash_nios2_qspi_write_block()
219 bytes_to_copy -= padding; in flash_nios2_qspi_write_block()
221 if (bytes_to_copy > remaining_length) { in flash_nios2_qspi_write_block()
222 bytes_to_copy = remaining_length; in flash_nios2_qspi_write_block()
233 if (bytes_to_copy > remaining_length) { in flash_nios2_qspi_write_block()
234 bytes_to_copy = remaining_length; in flash_nios2_qspi_write_block()
239 if (padding + bytes_to_copy > NIOS2_WRITE_BLOCK_SIZE) { in flash_nios2_qspi_write_block()
247 bytes_to_copy); in flash_nios2_qspi_write_block()
270 buffer_offset += bytes_to_copy; in flash_nios2_qspi_write_block()
271 remaining_length -= bytes_to_copy; in flash_nios2_qspi_write_block()
364 uint32_t word_to_read, bytes_to_copy; in flash_nios2_qspi_read() local
386 bytes_to_copy = NIOS2_WRITE_BLOCK_SIZE - (offset - read_offset); in flash_nios2_qspi_read()
387 if (bytes_to_copy > remaining_length) { in flash_nios2_qspi_read()
388 bytes_to_copy = remaining_length; in flash_nios2_qspi_read()
393 read_offset, bytes_to_copy); in flash_nios2_qspi_read()
396 buffer_offset += bytes_to_copy; in flash_nios2_qspi_read()
397 remaining_length -= bytes_to_copy; in flash_nios2_qspi_read()
403 bytes_to_copy = NIOS2_WRITE_BLOCK_SIZE; in flash_nios2_qspi_read()
405 if (bytes_to_copy > remaining_length) { in flash_nios2_qspi_read()
406 bytes_to_copy = remaining_length; in flash_nios2_qspi_read()
412 bytes_to_copy); in flash_nios2_qspi_read()
414 read_offset += bytes_to_copy; in flash_nios2_qspi_read()
415 buffer_offset += bytes_to_copy; in flash_nios2_qspi_read()
416 remaining_length -= bytes_to_copy; in flash_nios2_qspi_read()