/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/ |
D | mpu_armv8.h | 304 __STATIC_INLINE void ARM_MPU_LoadEx(MPU_Type* mpu, uint32_t rnr, ARM_MPU_Region_t const* table, uin… in ARM_MPU_LoadEx() argument 309 ARM_MPU_OrderedMemcpy(&(mpu->RBAR), &(table->RBAR), rowWordSize); in ARM_MPU_LoadEx() 317 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), c*rowWordSize); in ARM_MPU_LoadEx() 318 table += c; in ARM_MPU_LoadEx() 325 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_LoadEx() 334 __STATIC_INLINE void ARM_MPU_Load(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument 336 ARM_MPU_LoadEx(MPU, rnr, table, cnt); in ARM_MPU_Load() 345 __STATIC_INLINE void ARM_MPU_Load_NS(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load_NS() argument 347 ARM_MPU_LoadEx(MPU_NS, rnr, table, cnt); in ARM_MPU_Load_NS()
|
D | mpu_armv7.h | 264 __STATIC_INLINE void ARM_MPU_Load(ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument 268 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), MPU_TYPE_RALIASES*rowWordSize); in ARM_MPU_Load() 269 table += MPU_TYPE_RALIASES; in ARM_MPU_Load() 272 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_Load()
|
/hal_rpi_pico-latest/docs/ |
D | styles.css | 328 table.memberdecls { 332 table.memberdecls td.memSeparator { 337 table.memberdecls td.memItemLeft { 341 table.memberdecls td.memItemRight { 345 table.memberdecls td.mdescLeft { 349 table.memberdecls td.mdescRight { 354 table.params .paramname { 359 table.markdownTable td, table.markdownTable th { 365 table.markdownTable th.markdownTableHeadLeft, table.markdownTable th.markdownTableHeadRight, table.… 473 table.directory { [all …]
|
D | normalise.css | 325 display: table; /* 1 */
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/m-profile/ |
D | armv8m_mpu.h | 373 __STATIC_INLINE void ARM_MPU_LoadEx(MPU_Type* mpu, uint32_t rnr, ARM_MPU_Region_t const* table, uin… in ARM_MPU_LoadEx() argument 378 ARM_MPU_OrderedMemcpy(&(mpu->RBAR), &(table->RBAR), rowWordSize); in ARM_MPU_LoadEx() 386 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), c*rowWordSize); in ARM_MPU_LoadEx() 387 table += c; in ARM_MPU_LoadEx() 394 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_LoadEx() 403 __STATIC_INLINE void ARM_MPU_Load(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument 405 ARM_MPU_LoadEx(MPU, rnr, table, cnt); in ARM_MPU_Load() 414 __STATIC_INLINE void ARM_MPU_Load_NS(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load_NS() argument 416 ARM_MPU_LoadEx(MPU_NS, rnr, table, cnt); in ARM_MPU_Load_NS()
|
D | armv7m_mpu.h | 262 __STATIC_INLINE void ARM_MPU_Load(ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument 266 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), MPU_TYPE_RALIASES*rowWordSize); in ARM_MPU_Load() 267 table += MPU_TYPE_RALIASES; in ARM_MPU_Load() 270 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_Load()
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/ |
D | bootrom.c | 38 bool rom_funcs_lookup(uint32_t *table, unsigned int count) { in rom_funcs_lookup() argument 41 table[i] = (uintptr_t) rom_func_lookup(table[i]); in rom_funcs_lookup() 42 if (!table[i]) ok = false; in rom_funcs_lookup()
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2350/ |
D | memmap_no_flash.ld | 35 /* Note unlike RP2040, we start the image with a vector table even for 44 so we would waste RAM if the vector table were not at the
|
D | memmap_copy_to_ram.ld | 46 IMAGE_DEF, which is usually the reset handler of your vector table. 116 /* Vector table goes first in RAM, to avoid large alignment hole */
|
D | memmap_default.ld | 41 IMAGE_DEF, which is usually the reset handler of your vector table.
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/ |
D | bootrom.h | 151 bool rom_funcs_lookup(uint32_t *table, unsigned int count); 156 typedef void *(*rom_table_lookup_fn)(uint16_t *table, uint32_t code);
|
/hal_rpi_pico-latest/tools/ |
D | CMakeLists.txt | 35 BRIEF_DOCS "Partition table to embed in output" 36 FULL_DOCS "Partition table to embed in output" 344 # Create the specified partition table from JSON, and embed it in the
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2040/ |
D | memmap_no_flash.ld | 36 entry (ELF entry point), are *first* in the image, and the vector table
|
D | memmap_copy_to_ram.ld | 100 /* Vector table goes first in RAM, to avoid large alignment hole */
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/ |
D | crt0.S | 52 … don't include any IRQ vectors; we will initialize them during runtime_init in the RAM vector table
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_sci_m33_vfp.S | 731 beq 9f @ did we look up zeroth table entry? 774 9: @ we looked up the zeroth table entry; we could generate slightly more…
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_v1_rom_shim_rp2040.S | 416 @ in table below ¯ means signed variable
|
D | double_sci_m33.S | 54 @ r3 pointer to rtwopi table
|