Home
last modified time | relevance | path

Searched refs:b (Results 1 – 7 of 7) sorted by relevance

/hal_nordic-latest/nrfx/drivers/
Dnrfx_common.h430 #define NRFX_MIN(a, b) ((a) < (b) ? (a) : (b)) argument
440 #define NRFX_MAX(a, b) ((a) > (b) ? (a) : (b)) argument
465 #define NRFX_ROUNDED_DIV(a, b) \ argument
466 ((((a) < 0) ^ ((b) < 0)) ? (((a) - (b) / 2) / (b)) : (((a) + (b) / 2) / (b)))
479 #define NRFX_CEIL_DIV(a, b) ((((a) - 1) / (b)) + 1) argument
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_cracen.c390 static inline void xor_array(uint32_t * a, const uint32_t * b, size_t size) in xor_array() argument
394 for (; (uintptr_t)a < end; a++, b++) in xor_array()
396 *a = *a ^ *b; in xor_array()
/hal_nordic-latest/nrfx/samples/doc/
Dgenerate_sphinx_doc.bat3 sphinx-build -b html sphinx html_sphinx
DREADME.md40 sphinx-build -b html sphinx html_sphinx
/hal_nordic-latest/nrfx/doc/
Dgenerate_sphinx_doc.bat3 sphinx-build -b html sphinx html_sphinx -w warnings_sphinx_nrfx.txt
DREADME.md43 sphinx-build -b html sphinx html_sphinx
/hal_nordic-latest/drivers/nrf_802154/driver/src/
Dnrf_802154_aes_ccm_acc_ecb.c54 #define MIN(a, b) ((a) < (b) ? (a) : (b)) ///< Leaves the minimum o… argument