Lines Matching +full:ram +full:- +full:up
2 * Copyright (c) 2017 - 2018, Nordic Semiconductor ASA
55 * a non-zero value.
120 /**@brief Macro for performing integer division, making sure the result is rounded up.
128 * @return Integer result of dividing @c a by @c b, rounded up.
130 #define NRFX_CEIL_DIV(a, b) ((((a) - 1) / (b)) + 1)
173 } while (--remaining_attempts); \
210 * @brief Function for checking if an object is placed in the Data RAM region.
213 * to be placed in the Data RAM region. This function can be used to check if
218 * @retval true If the pointed object is located in the Data RAM region.
225 * @brief Function for checking if an object is aligned to a 32-bit word
228 * to be aligned to a 32-bit word. This function can be used to check if
233 * @retval true if the pointed object is aligned to a 32-bit word.
307 return (event - event_reg_offset) / sizeof(uint32_t); in nrfx_event_to_bitpos()