Searched refs:expr (Results 1 – 4 of 4) sorted by relevance
/mcuboot-latest/boot/zcbor/include/ |
D | zcbor_print.h | 40 #define zcbor_log_assert(expr, ...) \ argument 42 zcbor_do_print("ASSERTION \n \"" #expr \ 56 #define zcbor_assert(expr, ...) \ argument 58 if (!(expr)) { \ 59 zcbor_log_assert(expr, __VA_ARGS__); \ 63 #define zcbor_assert_state(expr, ...) \ argument 65 if (!(expr)) { \ 66 zcbor_log_assert(expr, __VA_ARGS__); \ 71 #define zcbor_assert(expr, ...) 72 #define zcbor_assert_state(expr, ...)
|
D | zcbor_common.h | 199 #define ZCBOR_FAIL_IF(expr) \ argument 201 if (expr) { \ 202 zcbor_log("ZCBOR_FAIL_IF(" #expr ") "); \ 214 #define ZCBOR_ERR_IF(expr, err) \ argument 216 if (expr) { \ 217 zcbor_log("ZCBOR_ERR_IF(" #expr ", %d) ", err); \
|
/mcuboot-latest/sim/tests/ |
D | core.rs | 28 ($name:ident, $arg: ident, $body:expr) => { 42 ($name:ident, $maker:ident($($margs:expr),*), $test:ident($($targs:expr),*)) => {
|
/mcuboot-latest/sim/simflash/src/ |
D | lib.rs | 46 ($item:expr) => (return Err($item.into());)
|