Searched refs:p_object (Results 1 – 1 of 1) sorted by relevance
254 NRF_STATIC_INLINE bool nrfx_is_in_ram(void const * p_object);268 NRF_STATIC_INLINE bool nrfx_is_word_aligned(void const * p_object);314 NRF_STATIC_INLINE bool nrfx_is_in_ram(void const * p_object) in nrfx_is_in_ram() argument316 return ((((uint32_t)p_object) & 0xE0000000u) == 0x20000000u); in nrfx_is_in_ram()319 NRF_STATIC_INLINE bool nrfx_is_word_aligned(void const * p_object) in nrfx_is_word_aligned() argument321 return ((((uint32_t)p_object) & 0x3u) == 0u); in nrfx_is_word_aligned()
Completed in 2 milliseconds