Searched refs:p_object (Results 1 – 4 of 4) sorted by relevance
| /hal_nordic-latest/nrfx/helpers/ |
| D | nrfx_ram_ctrl.c | 230 static void ram_ctrl_block_section_iterate(void const * p_object, in ram_ctrl_block_section_iterate() argument 235 NRFX_ASSERT(nrfx_is_in_ram(p_object)); in ram_ctrl_block_section_iterate() 238 size_t rel_obj_adr = (size_t)p_object - NRF_MEMORY_RAM_BASE; in ram_ctrl_block_section_iterate() 274 void nrfx_ram_ctrl_power_enable_set(void const * p_object, size_t length, bool enable) in nrfx_ram_ctrl_power_enable_set() argument 276 ram_ctrl_block_section_iterate(p_object, in nrfx_ram_ctrl_power_enable_set() 282 void nrfx_ram_ctrl_retention_enable_set(void const * p_object, size_t length, bool enable) in nrfx_ram_ctrl_retention_enable_set() argument 284 ram_ctrl_block_section_iterate(p_object, in nrfx_ram_ctrl_retention_enable_set()
|
| D | nrfx_ram_ctrl.h | 69 void nrfx_ram_ctrl_power_enable_set(void const * p_object, size_t length, bool enable); 79 void nrfx_ram_ctrl_retention_enable_set(void const * p_object, size_t length, bool enable);
|
| /hal_nordic-latest/nrfx/hal/ |
| D | nrf_common.h | 176 NRF_STATIC_INLINE bool nrf_dma_accessible_check(void const * p_reg, void const * p_object); 286 NRF_STATIC_INLINE bool nrf_dma_accessible_check(void const * p_reg, void const * p_object) in nrf_dma_accessible_check() argument 293 bool gram0x = ((uint32_t)p_object & 0xEFF00000) == 0x2F000000; in nrf_dma_accessible_check() 294 bool gram2x = ((uint32_t)p_object & 0xEFF80000) == 0x2F880000; in nrf_dma_accessible_check() 301 return ((((uint32_t)p_object) & 0xEFFE0000u) == 0x2FC00000u); in nrf_dma_accessible_check() 305 return ((((uint32_t)p_object) & 0xE0000000u) == 0x20000000u); in nrf_dma_accessible_check()
|
| /hal_nordic-latest/nrfx/drivers/ |
| D | nrfx_common.h | 627 NRF_STATIC_INLINE bool nrfx_is_in_ram(void const * p_object); 641 NRF_STATIC_INLINE bool nrfx_is_word_aligned(void const * p_object); 686 NRF_STATIC_INLINE bool nrfx_is_in_ram(void const * p_object) in nrfx_is_in_ram() argument 688 return ((((uint32_t)p_object) & 0xE0000000u) == 0x20000000u); in nrfx_is_in_ram() 691 NRF_STATIC_INLINE bool nrfx_is_word_aligned(void const * p_object) in nrfx_is_word_aligned() argument 693 return ((((uint32_t)p_object) & 0x3u) == 0u); in nrfx_is_word_aligned()
|