Home
last modified time | relevance | path

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

/zcbor-latest/tests/unit/test2_cpp/src/
Dmain.cpp53 zcbor_float64_put(state_e, 12.7); in main()
/zcbor-latest/include/
Dzcbor_encode.h74 bool zcbor_float64_put(zcbor_state_t *state, double input); /* IEEE754 float64 */
/zcbor-latest/tests/unit/test1_unit_tests/src/
Dmain.c260 zassert_false(zcbor_float64_put(state_e, 12.7), NULL); in ZTEST()
300 zassert_true(zcbor_float64_put(state_e, 12.7), NULL); in ZTEST()
1069 zassert_true(zcbor_float64_put(state_e, 3.14), NULL); in ZTEST()
1080 zassert_true(zcbor_float64_put(state_e, 3.14), NULL); in ZTEST()
1096 zassert_true(zcbor_float64_put(state_e, 3.14), NULL); in ZTEST()
1124 zassert_true(zcbor_float64_put(state_e, 13.0), NULL); in ZTEST()
1125 zassert_true(zcbor_float64_put(state_e, 14.0), NULL); in ZTEST()
1567 zassert_true(zcbor_float64_put(state_e, 0.0)); in ZTEST()
1574 zassert_true(zcbor_float64_put(state_e, pow(10, -315))); in ZTEST()
/zcbor-latest/src/
Dzcbor_encode.c503 bool zcbor_float64_put(zcbor_state_t *state, double input) function