Home
last modified time | relevance | path

Searched refs:opt_fixed32 (Results 1 – 17 of 17) sorted by relevance

/nanopb-3.4.0/tests/alltypes_pointer/
Dencode_alltypes_pointer.c78 uint32_t opt_fixed32 = 3048; in main() local
189 alltypes.opt_fixed32 = &opt_fixed32; in main()
Ddecode_alltypes_pointer.c92 TEST(alltypes.opt_fixed32 == NULL); in check_alltypes()
120 TEST(alltypes.opt_fixed32 && *alltypes.opt_fixed32 == 3048); in check_alltypes()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c267 uint32_t opt_fixed32 = 3048; in check_alltypes() local
419 alltypes.opt_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
420 alltypes.opt_fixed32.arg = &opt_fixed32; in check_alltypes()
Dencode_alltypes_callback.c264 uint32_t opt_fixed32 = 3048; in main() local
429 alltypes.opt_fixed32.funcs.encode = &write_fixed32; in main()
430 alltypes.opt_fixed32.arg = &opt_fixed32; in main()
/nanopb-3.4.0/tests/without_64bit/
Ddecode_alltypes.c84 TEST(alltypes.opt_fixed32 == 4048); in check_alltypes()
120 TEST(alltypes.opt_fixed32 == 3048); in check_alltypes()
Dencode_alltypes.c80 alltypes.opt_fixed32 = 3048; in main()
Dalltypes.proto73 optional fixed32 opt_fixed32 = 48 [default = 4048]; field
/nanopb-3.4.0/tests/backwards_compatibility/
Ddecode_legacy.c97 TEST(alltypes.opt_fixed32 == 4048); in check_alltypes()
141 TEST(alltypes.opt_fixed32 == 3048); in check_alltypes()
Dencode_legacy.c91 alltypes.opt_fixed32 = 3048; in main()
Dalltypes_legacy.proto90 optional fixed32 opt_fixed32 = 48 [default = 4048]; field
Dalltypes_legacy.h137 uint32_t opt_fixed32; member
305 X(a, STATIC, OPTIONAL, FIXED32, opt_fixed32, 48) \
/nanopb-3.4.0/tests/alltypes/
Dencode_alltypes.c124 alltypes.opt_fixed32 = 3048; in main()
Ddecode_alltypes.c133 TEST(alltypes.opt_fixed32 == 4048); in check_alltypes()
185 TEST(alltypes.opt_fixed32 == 3048); in check_alltypes()
Dalltypes.proto116 optional fixed32 opt_fixed32 = 48 [default = 4048]; field
/nanopb-3.4.0/tests/field_size_16/
Dalltypes.proto115 optional fixed32 opt_fixed32 = 10048 [default = 4048]; field
/nanopb-3.4.0/tests/field_size_32/
Dalltypes.proto115 optional fixed32 opt_fixed32 = 10048 [default = 4048]; field
/nanopb-3.4.0/tests/common_unittests/
Dcommon_unittests.c74 …TEST(pb_field_iter_next(&iter) && iter.tag == 48 && iter.pData == &msg.opt_fixed32 && iter.pSize … in main()