Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 25 of 33) sorted by relevance

12

/u-boot/drivers/dfu/
A Ddfu_mtd.c72 while (remaining) { in mtd_block_op()
91 remaining -= mtd->erasesize; in mtd_block_op()
108 remaining = *len; in mtd_block_op()
109 while (remaining) { in mtd_block_op()
110 if (off + remaining > lim) { in mtd_block_op()
115 *len -= remaining; in mtd_block_op()
142 remaining -= io_op.retlen; in mtd_block_op()
144 io_op.len = remaining; in mtd_block_op()
203 u64 remaining; in dfu_flush_medium_mtd() local
219 while (remaining) { in dfu_flush_medium_mtd()
[all …]
/u-boot/lib/zstd/
A Dentropy_common.c35 int remaining; in FSE_readNCount() local
51 remaining = (1 << nbBits) + 1; in FSE_readNCount()
55 while ((remaining > 1) & (charnum <= *maxSVPtr)) { in FSE_readNCount()
88 int const max = (2 * threshold - 1) - remaining; in FSE_readNCount()
102 remaining -= count < 0 ? -count : count; /* -1 means +1 */ in FSE_readNCount()
105 while (remaining < threshold) { in FSE_readNCount()
120 if (remaining != 1) in FSE_readNCount()
/u-boot/drivers/spi/
A Dcadence_qspi_apb.c601 unsigned int remaining = n_rx; in cadence_qspi_apb_indirect_read_execute() local
611 while (remaining > 0) { in cadence_qspi_apb_indirect_read_execute()
622 bytes_to_read = bytes_to_read > remaining ? in cadence_qspi_apb_indirect_read_execute()
623 remaining : bytes_to_read; in cadence_qspi_apb_indirect_read_execute()
634 remaining -= bytes_to_read; in cadence_qspi_apb_indirect_read_execute()
708 unsigned int remaining = n_tx; in cadence_qspi_apb_indirect_write_execute() local
733 while (remaining > 0) { in cadence_qspi_apb_indirect_write_execute()
734 write_bytes = remaining > page_size ? page_size : remaining; in cadence_qspi_apb_indirect_write_execute()
750 remaining -= write_bytes; in cadence_qspi_apb_indirect_write_execute()
/u-boot/drivers/mtd/spi/
A Dsf_dataflash.c277 size_t remaining = len; in spi_dataflash_write() local
303 while (remaining > 0) { in spi_dataflash_write()
399 remaining = 0; in spi_dataflash_write()
407 remaining = remaining - writelen; in spi_dataflash_write()
412 if (remaining > spi_flash->page_size) in spi_dataflash_write()
415 writelen = remaining; in spi_dataflash_write()
A Dspi-nor-tiny.c93 size_t remaining = len; in spi_nor_read_data() local
105 while (remaining) { in spi_nor_read_data()
106 op.data.nbytes = remaining < UINT_MAX ? remaining : UINT_MAX; in spi_nor_read_data()
116 remaining -= op.data.nbytes; in spi_nor_read_data()
A Dspi-nor-core.c86 size_t remaining = len; in spi_nor_read_data() local
98 while (remaining) { in spi_nor_read_data()
99 op.data.nbytes = remaining < UINT_MAX ? remaining : UINT_MAX; in spi_nor_read_data()
109 remaining -= op.data.nbytes; in spi_nor_read_data()
/u-boot/lib/
A Dhexdump.c186 int i, linelen, remaining = len; in print_hex_dump() local
193 linelen = min(remaining, rowsize); in print_hex_dump()
194 remaining -= rowsize; in print_hex_dump()
A Dbch.c1165 unsigned int sum, x, y, remaining, ak = 0, xi[m]; in build_deg2_base() local
1178 remaining = m; in build_deg2_base()
1181 for (x = 0; (x <= GF_N(bch)) && remaining; x++) { in build_deg2_base()
1188 remaining--; in build_deg2_base()
1196 return remaining ? -1 : 0; in build_deg2_base()
/u-boot/drivers/fpga/
A Dsocfpga_arria10.c681 fpga_loadfs->remaining = rbf_size; in first_loading_rbf_to_buffer()
691 fpga_loadfs->remaining = 0; in first_loading_rbf_to_buffer()
693 fpga_loadfs->remaining -= buffer_size; in first_loading_rbf_to_buffer()
730 if (fpga_loadfs->remaining > *buffer_bsize) { in subsequent_loading_rbf_to_buffer()
731 fpga_loadfs->remaining -= *buffer_bsize; in subsequent_loading_rbf_to_buffer()
733 *buffer_bsize = fpga_loadfs->remaining; in subsequent_loading_rbf_to_buffer()
734 fpga_loadfs->remaining = 0; in subsequent_loading_rbf_to_buffer()
843 while (fpga_loadfs.remaining) { in socfpga_loadfs()
/u-boot/lib/lzo/
A Dlzo1x_decompress.c84 size_t tmp, remaining; in lzop_decompress() local
91 remaining = *dst_len; in lzop_decompress()
111 if (dlen > remaining) in lzop_decompress()
135 remaining -= dlen; in lzop_decompress()
/u-boot/tools/
A Drkcommon.c390 unsigned int remaining = size; in rkcommon_rc4_encode_spl() local
392 while (remaining > 0) { in rkcommon_rc4_encode_spl()
393 int step = (remaining > RK_BLK_SIZE) ? RK_BLK_SIZE : remaining; in rkcommon_rc4_encode_spl()
397 remaining -= step; in rkcommon_rc4_encode_spl()
/u-boot/arch/mips/mach-jz47xx/jz4780/
A DTODO4 - define the remaining register base addresses as physical addresses and establish a mapping with i…
/u-boot/drivers/ram/stm32mp1/
A Dstm32mp1_tests.c534 remaining = bufsize; in test_sso()
535 while (remaining) { in test_sso()
563 remaining -= 4; in test_sso()
770 remaining = bufsize; in test_noise_burst()
772 while (remaining) { in test_noise_burst()
773 if (remaining < size) in test_noise_burst()
774 size = remaining; in test_noise_burst()
776 remaining -= size; in test_noise_burst()
818 remaining = bufsize; in test_loop()
819 while (remaining) { in test_loop()
[all …]
/u-boot/tools/buildman/
A Dboard.py306 remaining = set(boards) - set(found)
307 if remaining:
308 warnings.append('Boards not found: %s\n' % ', '.join(remaining))
/u-boot/doc/android/
A Dfastboot-protocol.rst32 a. INFO -> the remaining 60 bytes are an informative message
36 b. FAIL -> the requested command failed. The remaining 60 bytes
57 a. INFO -> display the remaining 60 bytes and return to #4
59 b. FAIL -> display the remaining 60 bytes (if present) as a failure
/u-boot/cmd/
A Dmtd.c247 u64 start_off, off, len, remaining, default_len; in do_mtd_io() local
302 remaining = len; in do_mtd_io()
338 while (remaining) { in do_mtd_io()
359 remaining -= io_op.retlen; in do_mtd_io()
/u-boot/fs/fat/
A Dfat.c698 int remaining; member
753 itr->remaining = 0; in fat_itr_root()
797 itr->remaining = 0; in fat_itr_child()
880 if (itr->remaining == 0) { in next_dent()
891 itr->remaining = nbytes / sizeof(dir_entry) - 1; in next_dent()
894 itr->remaining--; in next_dent()
985 itr->dent_rem = itr->remaining; in fat_itr_next()
1089 itr->remaining = 0; in fat_itr_resolve()
A Dfat_write.c86 itr->remaining = nbytes / sizeof(dir_entry) - 1; in fat_move_to_cluster()
262 int remaining; in fat_find_empty_dentries() local
282 remaining = itr->remaining; in fat_find_empty_dentries()
307 itr->remaining = remaining; in fat_find_empty_dentries()
418 if (!itr->remaining) { in fill_dir_slot()
852 itr->remaining = bytesperclust / sizeof(dir_entry) - 1; in new_dir_table()
1490 if (!itr->remaining) in delete_single_dentry()
1545 itr->remaining = itr->dent_rem; in delete_dentry_long()
/u-boot/doc/
A DREADME.fsl-trustzone-components25 and one base region, always active, that covers the remaining address space.
A DREADME.SPL83 All the nodes remaining in the SPL devicetree are bound
/u-boot/arch/arm/mach-socfpga/include/mach/
A Dfpga_manager_arria10.h119 u32 remaining; member
/u-boot/drivers/ram/aspeed/
A DKconfig64 can be used by the system. The remaining 1/9 will be used by
/u-boot/doc/develop/
A Dmenus.rst19 function, which handle your menu. This function returns the remaining
/u-boot/arch/arm/dts/
A Dk3-am65.dtsi102 <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, /* MMRs, remaining NAVSS */
A Dk3-j7200.dtsi160 <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, /* MMRs, remaining NAVSS */

Completed in 66 milliseconds

12