/u-boot/drivers/dfu/ |
A D | dfu_mtd.c | 72 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 D | entropy_common.c | 35 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 D | cadence_qspi_apb.c | 601 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 D | sf_dataflash.c | 277 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 D | spi-nor-tiny.c | 93 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 D | spi-nor-core.c | 86 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 D | hexdump.c | 186 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 D | bch.c | 1165 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 D | socfpga_arria10.c | 681 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 D | lzo1x_decompress.c | 84 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 D | rkcommon.c | 390 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 D | TODO | 4 - define the remaining register base addresses as physical addresses and establish a mapping with i…
|
/u-boot/drivers/ram/stm32mp1/ |
A D | stm32mp1_tests.c | 534 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 D | board.py | 306 remaining = set(boards) - set(found) 307 if remaining: 308 warnings.append('Boards not found: %s\n' % ', '.join(remaining))
|
/u-boot/doc/android/ |
A D | fastboot-protocol.rst | 32 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 D | mtd.c | 247 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 D | fat.c | 698 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 D | fat_write.c | 86 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 D | README.fsl-trustzone-components | 25 and one base region, always active, that covers the remaining address space.
|
A D | README.SPL | 83 All the nodes remaining in the SPL devicetree are bound
|
/u-boot/arch/arm/mach-socfpga/include/mach/ |
A D | fpga_manager_arria10.h | 119 u32 remaining; member
|
/u-boot/drivers/ram/aspeed/ |
A D | Kconfig | 64 can be used by the system. The remaining 1/9 will be used by
|
/u-boot/doc/develop/ |
A D | menus.rst | 19 function, which handle your menu. This function returns the remaining
|
/u-boot/arch/arm/dts/ |
A D | k3-am65.dtsi | 102 <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, /* MMRs, remaining NAVSS */
|
A D | k3-j7200.dtsi | 160 <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, /* MMRs, remaining NAVSS */
|