Home
last modified time | relevance | path

Searched refs:val64 (Results 1 – 14 of 14) sorted by relevance

/Zephyr-Core-3.6.0/tests/subsys/settings/nvs/src/
Dsettings_test_nvs.c15 uint64_t val64; variable
52 val_len_max = MIN(val_len_max, sizeof(val64)); in c1_handle_get()
53 memcpy(val, &val64, MIN(val_len_max, sizeof(val64))); in c1_handle_get()
75 rc = read_cb(cb_arg, &val64, sizeof(val64)); in c1_handle_set()
107 (void)cb("myfoo/mybar64", &val64, sizeof(val64)); in c1_handle_export()
Dsettings_test.h23 extern uint64_t val64;
/Zephyr-Core-3.6.0/tests/subsys/settings/file/src/
Dsettings_test_compress_file.c45 val64 = 1125U; in ZTEST()
58 val64 = 37U; in ZTEST()
70 val64 = i; in ZTEST()
74 val64 = 0xff; in ZTEST()
76 zassert_true(val64 == i, "Bad value loaded"); in ZTEST()
Dsettings_test_file.c15 uint64_t val64; variable
59 val_len_max = MIN(val_len_max, sizeof(val64)); in c1_handle_get()
60 memcpy(val, &val64, MIN(val_len_max, sizeof(val64))); in c1_handle_get()
97 rc = read_cb(cb_arg, &val64, sizeof(val64)); in c1_handle_set()
122 (void)cb("myfoo/mybar64", &val64, sizeof(val64)); in c1_handle_export()
/Zephyr-Core-3.6.0/tests/subsys/settings/fcb/src/
Dsettings_test_fcb.c20 uint64_t val64; variable
88 val_len_max = MIN(val_len_max, sizeof(val64)); in c1_handle_get()
89 memcpy(val, &val64, MIN(val_len_max, sizeof(val64))); in c1_handle_get()
111 rc = read_cb(cb_arg, &val64, sizeof(val64)); in c1_handle_set()
143 (void)cb("myfoo/mybar64", &val64, sizeof(val64)); in c1_handle_export()
Dsettings_test.h29 extern uint64_t val64;
/Zephyr-Core-3.6.0/tests/unit/pot/
Dlog2.c11 static const uint8_t val64 = LOG2(42 + BIT64(32)); variable
35 zassert_equal(32, val64); in ZTEST()
Dlog2.cpp11 static constexpr uint8_t val64 = LOG2(42 + BIT64(32)); variable
37 zassert_equal(32, val64); in ZTEST()
Dlog2ceil.c11 static const uint8_t val64 = LOG2CEIL(42 + BIT64(32)); variable
36 zassert_equal(33, val64); in ZTEST()
Dlog2ceil.cpp11 static constexpr uint8_t val64 = LOG2CEIL(42 + BIT64(32)); variable
42 zassert_equal(33, val64); in ZTEST()
Dnhpot.c13 static const uint64_t val64 = NHPOT(42 + BIT64(32)); variable
39 zassert_equal(BIT64(33), val64); in ZTEST()
Dnhpot.cpp11 static constexpr uint64_t val64 = NHPOT(42 + BIT64(32)); variable
43 zassert_equal(BIT64(33), val64); in ZTEST()
/Zephyr-Core-3.6.0/tests/subsys/settings/src/
Dsettings_test_getset_int64.c22 zassert_equal(val64, 0x8012345678901234, in ZTEST()
40 zassert_equal(val64, 1, in ZTEST()
/Zephyr-Core-3.6.0/tests/subsys/settings/file/include/
Dsettings_test_file.h24 extern uint64_t val64;