Searched refs:b (Results 1 – 7 of 7) sorted by relevance
430 #define NRFX_MIN(a, b) ((a) < (b) ? (a) : (b)) argument440 #define NRFX_MAX(a, b) ((a) > (b) ? (a) : (b)) argument465 #define NRFX_ROUNDED_DIV(a, b) \ argument466 ((((a) < 0) ^ ((b) < 0)) ? (((a) - (b) / 2) / (b)) : (((a) + (b) / 2) / (b)))479 #define NRFX_CEIL_DIV(a, b) ((((a) - 1) / (b)) + 1) argument
390 static inline void xor_array(uint32_t * a, const uint32_t * b, size_t size) in xor_array() argument394 for (; (uintptr_t)a < end; a++, b++) in xor_array()396 *a = *a ^ *b; in xor_array()
3 sphinx-build -b html sphinx html_sphinx
40 sphinx-build -b html sphinx html_sphinx
3 sphinx-build -b html sphinx html_sphinx -w warnings_sphinx_nrfx.txt
43 sphinx-build -b html sphinx html_sphinx
54 #define MIN(a, b) ((a) < (b) ? (a) : (b)) ///< Leaves the minimum o… argument