Searched refs:zcbor_int64_expect (Results 1 – 4 of 4) sorted by relevance
| /zcbor-latest/tests/unit/test1_unit_tests/src/ |
| D | main.c | 24 zassert_false(zcbor_int64_expect(state_d, 4), NULL); in ZTEST() 25 zassert_false(zcbor_int64_expect(state_d, 6), NULL); in ZTEST() 26 zassert_false(zcbor_int64_expect(state_d, -5), NULL); in ZTEST() 27 zassert_false(zcbor_int64_expect(state_d, -6), NULL); in ZTEST() 28 zassert_true(zcbor_int64_expect(state_d, 5), NULL); in ZTEST() 31 zassert_true(zcbor_int64_expect(state_d, 5), NULL); in ZTEST() 42 zassert_false(zcbor_int64_expect(state_d, 5000000001), NULL); in ZTEST() 43 zassert_true(zcbor_int64_expect(state_d, 5000000000), NULL); in ZTEST() 50 zassert_true(zcbor_int64_expect(state_d, -505), NULL); in ZTEST() 53 zassert_false(zcbor_int64_expect(state_d, -5000000000001), NULL); in ZTEST() [all …]
|
| /zcbor-latest/tests/unit/test2_cpp/src/ |
| D | main.cpp | 73 zcbor_int64_expect(state_d, 2); in main()
|
| /zcbor-latest/src/ |
| D | zcbor_decode.c | 292 return zcbor_int64_expect(state, result); in zcbor_int64_expect_union() 319 return zcbor_int64_expect(state, expected); in zcbor_int32_expect() 330 bool zcbor_int64_expect(zcbor_state_t *state, int64_t expected) in zcbor_int64_expect() function 350 return zcbor_int64_expect(state, *expected); in zcbor_int64_pexpect()
|
| /zcbor-latest/include/ |
| D | zcbor_decode.h | 96 bool zcbor_int64_expect(zcbor_state_t *state, int64_t expected); /* pint/nint */
|