Searched refs:size_bytes (Results 1 – 3 of 3) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/hardware_xip_cache/ |
D | xip_cache.c | 27 __force_inline static void check_xip_offset_range(uintptr_t start_offset, uintptr_t size_bytes) { in check_xip_offset_range() argument 31 (void)size_bytes; in check_xip_offset_range() 33 valid_params_if(HARDWARE_XIP_CACHE, start_offset + size_bytes <= XIP_CACHE_ADDRESS_SPACE_SIZE); in check_xip_offset_range() 35 valid_params_if(HARDWARE_XIP_CACHE, start_offset + size_bytes >= start_offset); in check_xip_offset_range() 40 …ot_in_flash_func(xip_cache_maintain)(uintptr_t start_offset, uintptr_t size_bytes, cache_op_t op) { in __no_inline_not_in_flash_func() 41 check_xip_offset_range(start_offset, size_bytes); in __no_inline_not_in_flash_func() 43 valid_params_if(HARDWARE_XIP_CACHE, (size_bytes & (XIP_CACHE_LINE_SIZE - 1u)) == 0); in __no_inline_not_in_flash_func() 46 uintptr_t end = start_offset + size_bytes; in __no_inline_not_in_flash_func() 65 …nline_not_in_flash_func(xip_cache_invalidate_range)(uintptr_t start_offset, uintptr_t size_bytes) { in __no_inline_not_in_flash_func() 69 check_xip_offset_range(start_offset, size_bytes); in __no_inline_not_in_flash_func() [all …]
|
/hal_rpi_pico-latest/src/rp2_common/hardware_xip_cache/include/hardware/ |
D | xip_cache.h | 125 void xip_cache_invalidate_range(uintptr_t start_offset, uintptr_t size_bytes); 169 void xip_cache_clean_range(uintptr_t start_offset, uintptr_t size_bytes); 174 static inline void xip_cache_clean_range(uintptr_t start_offset, uintptr_t size_bytes) { in xip_cache_clean_range() argument 176 (void)size_bytes; in xip_cache_clean_range() 201 void xip_cache_pin_range(uintptr_t start_offset, uintptr_t size_bytes);
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/ |
D | bootrom.h | 78 typedef int (*rom_flash_op_fn)(cflash_flags_t flags, uintptr_t addr, uint32_t size_bytes, uint8_t *… 543 uint32_t size_bytes; member 551 *(op->res) = func(op->flags, op->addr, op->size_bytes, op->buf); in rom_helper_flash_op() 593 static inline int rom_flash_op(cflash_flags_t flags, uintptr_t addr, uint32_t size_bytes, uint8_t *… in rom_flash_op() argument 600 .size_bytes = size_bytes, in rom_flash_op()
|