Home
last modified time | relevance | path

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

/zcbor-latest/tests/unit/test2_cpp/src/
Dmain.cpp78 zcbor_int64_decode(state_d, &six); in main()
/zcbor-latest/tests/unit/test1_unit_tests/src/
Dmain.c38 zassert_true(zcbor_int64_decode(state_d, &int64), NULL); in ZTEST()
60 zassert_false(zcbor_int64_decode(state_d, &int64), NULL); in ZTEST()
328 zassert_false(zcbor_int64_decode(state_d, &(int64_t){6}), NULL); in ZTEST()
365 zassert_true(zcbor_int64_decode(state_d, &(int64_t){6}), NULL); in ZTEST()
1406 zassert_false(zcbor_int64_decode(state_d, &i64_result), NULL); in ZTEST()
1409 zassert_false(zcbor_int64_decode(state_d, &i64_result), NULL); in ZTEST()
1432 zassert_true(zcbor_int64_decode(state_d, &i64_result), NULL); in ZTEST()
1433 zassert_true(zcbor_int64_decode(state_d, &i64_result), NULL); in ZTEST()
/zcbor-latest/include/
Dzcbor_decode.h67 bool zcbor_int64_decode(zcbor_state_t *state, int64_t *result); /* pint/nint */
/zcbor-latest/src/
Dzcbor_decode.c249 bool zcbor_int64_decode(zcbor_state_t *state, int64_t *result) in zcbor_int64_decode() function
335 if (!zcbor_int64_decode(state, &actual)) { in zcbor_int64_expect()