Lines Matching defs:x_len_bytes
288 uint32_t x_len_bytes;
292 x_len_bytes = ui_len;
305 while (x_len_bytes) {
308 x_size_rx = (x_len_bytes > FSPI_RX_IPBUF_SIZE) ?
309 FSPI_RX_IPBUF_SIZE : x_len_bytes;
399 x_len_bytes -= x_size_rx;
413 uint32_t x_addr, x_len_bytes;
418 x_len_bytes = ui_len;
420 __func__, __LINE__, x_addr, x_len_bytes);
422 while (x_len_bytes != 0U) {
424 x_size_tx = (x_len_bytes > FSPI_TX_IPBUF_SIZE) ?
425 FSPI_TX_IPBUF_SIZE : x_len_bytes;
430 __func__, __LINE__, x_addr, x_len_bytes);
495 x_len_bytes -= x_size_tx;
689 uint32_t x_addr, x_len_bytes, i, num_sector = 0U;
699 x_len_bytes = ui_len * 1;
700 if (x_len_bytes < F_SECTOR_ERASE_SZ) {
706 num_sector = x_len_bytes/F_SECTOR_ERASE_SZ;
707 num_sector += x_len_bytes % F_SECTOR_ERASE_SZ ? 1U : 0U;