/mcuboot-latest/sim/simflash/src/ |
D | pdump.rs | 15 count: usize, field 24 count: 0, in new() 30 if self.count == 16 { in add_byte() 33 if self.count == 8 { in add_byte() 42 self.count += 1; in add_byte() 46 if self.count == 0 { in ship() 55 self.count = 0; in ship()
|
/mcuboot-latest/boot/bootutil/src/ |
D | image_rsa.c | 92 int count = PSS_MASK_LEN; in pss_mgf1() local 95 while (count > 0) { in pss_mgf1() 104 if (bytes > count) in pss_mgf1() 105 bytes = count; in pss_mgf1() 109 count -= bytes; in pss_mgf1()
|
/mcuboot-latest/boot/mbed/src/ |
D | flash_map_backend.cpp | 212 int flash_area_get_sectors(int fa_id, uint32_t* count, struct flash_sector* sectors) { in flash_area_get_sectors() argument 217 *count = 0; in flash_area_get_sectors() 222 if (*count < MCUBOOT_MAX_IMG_SECTORS) { in flash_area_get_sectors() 223 sectors[*count].fs_off = offset; in flash_area_get_sectors() 224 sectors[*count].fs_size = erase_size; in flash_area_get_sectors() 228 *count += 1; in flash_area_get_sectors()
|
/mcuboot-latest/boot/cypress/libs/retarget_io_pdl/ |
D | cy_retarget_io_pdl.c | 191 uint32_t count = 0; in cy_retarget_io_putchar() local 192 while (count == 0) in cy_retarget_io_putchar() 194 count = Cy_SCB_UART_Put(CYBSP_UART_HW, c); in cy_retarget_io_putchar()
|
/mcuboot-latest/boot/cypress/platforms/retarget_io_pdl/ |
D | cy_retarget_io_pdl.c | 191 uint32_t count = 0; in cy_retarget_io_putchar() local 192 while (count == 0) in cy_retarget_io_putchar() 194 count = Cy_SCB_UART_Put(CYBSP_UART_HW, c); in cy_retarget_io_putchar()
|
/mcuboot-latest/samples/zephyr/ |
D | run-tests.go | 252 count := 0 263 count += 1 267 if count == 0 {
|
/mcuboot-latest/scripts/ |
D | mcubin.bt | 43 uint32 count; 44 struct ENTRY entries[count]; 101 for (i = 0; i < ptable.count; i++) {
|
/mcuboot-latest/sim/mcuboot-sys/csupport/storage/ |
D | flash_map.h | 136 int flash_area_get_sectors(int fa_id, uint32_t *count,
|
/mcuboot-latest/scripts/imgtool/keys/ |
D | general.py | 43 for count, b in enumerate(encoded_bytes): 44 if count % 8 == 0:
|
/mcuboot-latest/sim/mcuboot-sys/csupport/ |
D | run.c | 401 int flash_area_get_sectors(int fa_id, uint32_t *count, in flash_area_get_sectors() argument 421 if (*count > slot->num_areas) { in flash_area_get_sectors() 422 *count = slot->num_areas; in flash_area_get_sectors() 423 } else if (slot->num_areas > *count) { in flash_area_get_sectors() 427 for (i = 0; i < *count; i++) { in flash_area_get_sectors()
|
/mcuboot-latest/boot/mbed/include/flash_map_backend/ |
D | flash_map_backend.h | 161 int flash_area_get_sectors(int fa_id, uint32_t *count,
|
/mcuboot-latest/boot/nuttx/include/flash_map_backend/ |
D | flash_map_backend.h | 370 int flash_area_get_sectors(int fa_id, uint32_t *count,
|
/mcuboot-latest/boot/espressif/include/flash_map_backend/ |
D | flash_map_backend.h | 77 int flash_area_get_sectors(int fa_id, uint32_t *count,
|
/mcuboot-latest/ptest/src/ |
D | main.rs | 162 let mut count = 1; in done() localVariable 165 let name = format!("./{}-{:04}.log", base, count); in done() 166 count += 1; in done()
|
/mcuboot-latest/sim/tests/ |
D | core.rs | 195 let count = IMAGE_NUMBER.fetch_add(1, Ordering::SeqCst); in dump_image() localVariable 196 let full_name = format!("{}-{:04}", name, count); in dump_image()
|
/mcuboot-latest/sim/src/ |
D | image.rs | 681 for count in 2 .. 5 { in run_basic_revert() 682 info!("Try revert: {}", count); in run_basic_revert() 683 let flash = self.try_revert(count); in run_basic_revert() 685 error!("Revert failure on count {}", count); in run_basic_revert() 709 let (flash, count) = self.try_upgrade(Some(i), true); in run_perm_with_fails() 710 info!("Second boot, count={}", count); in run_perm_with_fails() 1166 let mut count = self.total_count.unwrap() / 2; in run_with_status_fails_with_reset() localVariable 1177 Some(&mut count), None, true).asserts(); in run_with_status_fails_with_reset() 1438 let (first_interrupted, count) = match c::boot_go(&mut flash, in try_upgrade() 1458 (flash, count - counter) in try_upgrade() [all …]
|
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/ |
D | bignum.h | 554 int mbedtls_mpi_shift_l( mbedtls_mpi *X, size_t count ); 566 int mbedtls_mpi_shift_r( mbedtls_mpi *X, size_t count );
|
/mcuboot-latest/boot/nuttx/src/flash_map_backend/ |
D | flash_map_backend.c | 662 int flash_area_get_sectors(int fa_id, uint32_t *count, in flash_area_get_sectors() argument 680 *count = total_count; in flash_area_get_sectors() 684 BOOT_LOG_INF("ID:%d count:%" PRIu32, fa_id, *count); in flash_area_get_sectors()
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_mcuboot.c | 362 int flash_area_get_sectors(int fa_id, uint32_t *count, in flash_area_get_sectors() argument 379 *count = total_count; in flash_area_get_sectors()
|
/mcuboot-latest/sim/mcuboot-sys/src/ |
D | api.rs | 157 let count = if cfg!(feature = "multiimage") { in new() localVariable 163 storage: vec![0; count] in new()
|
/mcuboot-latest/docs/ |
D | PORTING.md | 159 int flash_area_get_sectors(int fa_id, uint32_t *count,
|