Home
last modified time | relevance | path

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

/nanopb-2.7.6/tests/alltypes_pointer/
Dencode_alltypes_pointer.c26 uint64_t req_fixed64 = 1011; in main() local
144 alltypes.req_fixed64 = &req_fixed64; in main()
Ddecode_alltypes_pointer.c35 TEST(alltypes.req_fixed64 && *alltypes.req_fixed64 == 1011); in check_alltypes()
/nanopb-2.7.6/tests/alltypes_callback/
Ddecode_alltypes_callback.c240 uint64_t req_fixed64 = 1011; in check_alltypes() local
313 alltypes.req_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
314 alltypes.req_fixed64.arg = &req_fixed64; in check_alltypes()
Dencode_alltypes_callback.c251 uint64_t req_fixed64 = 1011; in main() local
310 alltypes.req_fixed64.funcs.encode = &write_fixed64; in main()
311 alltypes.req_fixed64.arg = &req_fixed64; in main()
/nanopb-2.7.6/tests/backwards_compatibility/
Dencode_legacy.c33 alltypes.req_fixed64 = 1011; in main()
Dalltypes_legacy.proto51 required fixed64 req_fixed64 = 11; field
Dalltypes_legacy.h81 uint64_t req_fixed64; member
274 X(a, STATIC, REQUIRED, FIXED64, req_fixed64, 11) \
Ddecode_legacy.c39 TEST(alltypes.req_fixed64 == 1011); in check_alltypes()
/nanopb-2.7.6/tests/alltypes/
Dencode_alltypes.c35 alltypes.req_fixed64 = 1011; in main()
Ddecode_alltypes.c44 TEST(alltypes.req_fixed64 == 1011); in check_alltypes()
236 TEST(alltypes.req_fixed64 == 0); in check_alltypes()
Dalltypes.proto73 required fixed64 req_fixed64 = 11; field
/nanopb-2.7.6/tests/field_size_32/
Dalltypes.proto72 required fixed64 req_fixed64 = 11; field
/nanopb-2.7.6/tests/field_size_16/
Dalltypes.proto72 required fixed64 req_fixed64 = 11; field
/nanopb-2.7.6/tests/common_unittests/
Dcommon_unittests.c31 …TEST(pb_field_iter_next(&iter) && iter.tag == 11 && iter.pData == &msg.req_fixed64 && !iter.pSize) in main()