Home
last modified time | relevance | path

Searched refs:zcbor_uint64_decode (Results 1 – 4 of 4) sorted by relevance

/zcbor-latest/tests/unit/test2_cpp/src/
Dmain.cpp80 zcbor_uint64_decode(state_d, &eight); in main()
/zcbor-latest/include/
Dzcbor_decode.h69 bool zcbor_uint64_decode(zcbor_state_t *state, uint64_t *result); /* pint */
/zcbor-latest/tests/unit/test1_unit_tests/src/
Dmain.c92 zassert_true(zcbor_uint64_decode(&state_d, &uint64), NULL); in ZTEST()
330 zassert_false(zcbor_uint64_decode(state_d, &(uint64_t){8}), NULL); in ZTEST()
367 zassert_true(zcbor_uint64_decode(state_d, &(uint64_t){8}), NULL); in ZTEST()
1412 zassert_false(zcbor_uint64_decode(state_d, &u64_result), NULL); in ZTEST()
1415 zassert_false(zcbor_uint64_decode(state_d, &u64_result), NULL); in ZTEST()
1434 zassert_true(zcbor_uint64_decode(state_d, &u64_result), NULL); in ZTEST()
1435 zassert_true(zcbor_uint64_decode(state_d, &u64_result), NULL); in ZTEST()
/zcbor-latest/src/
Dzcbor_decode.c354 bool zcbor_uint64_decode(zcbor_state_t *state, uint64_t *result) in zcbor_uint64_decode() function
389 if (!zcbor_uint64_decode(state, &actual)) { in zcbor_uint64_expect()