Home
last modified time | relevance | path

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

/nanopb-3.4.0/tests/alltypes_pointer/
Dencode_alltypes_pointer.c81 uint64_t opt_fixed64 = 3051; in main() local
192 alltypes.opt_fixed64 = &opt_fixed64; in main()
Ddecode_alltypes_pointer.c95 TEST(alltypes.opt_fixed64 == NULL); in check_alltypes()
123 TEST(alltypes.opt_fixed64 && *alltypes.opt_fixed64 == 3051); in check_alltypes()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c270 uint64_t opt_fixed64 = 3051; in check_alltypes() local
428 alltypes.opt_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
429 alltypes.opt_fixed64.arg = &opt_fixed64; in check_alltypes()
Dencode_alltypes_callback.c267 uint64_t opt_fixed64 = 3051; in main() local
438 alltypes.opt_fixed64.funcs.encode = &write_fixed64; in main()
439 alltypes.opt_fixed64.arg = &opt_fixed64; in main()
/nanopb-3.4.0/tests/backwards_compatibility/
Ddecode_legacy.c104 TEST(alltypes.opt_fixed64 == 4051); in check_alltypes()
148 TEST(alltypes.opt_fixed64 == 3051); in check_alltypes()
Dencode_legacy.c98 alltypes.opt_fixed64 = 3051; in main()
Dalltypes_legacy.proto94 optional fixed64 opt_fixed64 = 51 [default = 4051]; field
Dalltypes_legacy.h143 uint64_t opt_fixed64; member
308 X(a, STATIC, OPTIONAL, FIXED64, opt_fixed64, 51) \
/nanopb-3.4.0/tests/alltypes/
Dencode_alltypes.c131 alltypes.opt_fixed64 = 3051; in main()
Ddecode_alltypes.c140 TEST(alltypes.opt_fixed64 == 4051); in check_alltypes()
192 TEST(alltypes.opt_fixed64 == 3051); in check_alltypes()
Dalltypes.proto120 optional fixed64 opt_fixed64 = 51 [default = 4051]; field
/nanopb-3.4.0/tests/field_size_16/
Dalltypes.proto119 optional fixed64 opt_fixed64 = 10051 [default = 4051]; field
/nanopb-3.4.0/tests/field_size_32/
Dalltypes.proto119 optional fixed64 opt_fixed64 = 10051 [default = 4051]; field
/nanopb-3.4.0/tests/common_unittests/
Dcommon_unittests.c77 …TEST(pb_field_iter_next(&iter) && iter.tag == 51 && iter.pData == &msg.opt_fixed64 && iter.pSize … in main()