Home
last modified time | relevance | path

Searched refs:zcbor_assert_state (Results 1 – 3 of 3) sorted by relevance

/mcuboot-latest/boot/zcbor/include/
Dzcbor_print.h63 #define zcbor_assert_state(expr, ...) \ macro
72 #define zcbor_assert_state(expr, ...)
/mcuboot-latest/boot/zcbor/src/
Dzcbor_decode.c133 zcbor_assert_state(result_len != 0, "0-length result not supported.\r\n"); in value_extract()
134 zcbor_assert_state(result_len <= 8, "result sizes above 8 bytes not supported.\r\n"); in value_extract()
135 zcbor_assert_state(result != NULL, "result cannot be NULL.\r\n"); in value_extract()
1408 zcbor_assert_state(result == NULL,
1560 zcbor_assert_state(retval, "zcbor_multi_decode should not fail with these parameters.\r\n");
Dzcbor_encode.c54 zcbor_assert_state(additional < 32, "Unsupported additional value: %d\r\n", additional); in encode_header_byte()
97 zcbor_assert_state(max_result_len != 0, "0-length result not supported.\r\n"); in value_encode()