Home
last modified time | relevance | path

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

/nanopb-3.4.0/tests/alltypes_pointer/
Dencode_alltypes_pointer.c24 int32_t req_sfixed32 = -1009; in main() local
142 alltypes.req_sfixed32 = &req_sfixed32; in main()
Ddecode_alltypes_pointer.c32 TEST(alltypes.req_sfixed32 && *alltypes.req_sfixed32 == -1009); in check_alltypes()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c238 int32_t req_sfixed32 = -1009; in check_alltypes() local
307 alltypes.req_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
308 alltypes.req_sfixed32.arg = &req_sfixed32; in check_alltypes()
Dencode_alltypes_callback.c249 int32_t req_sfixed32 = -1009; in main() local
304 alltypes.req_sfixed32.funcs.encode = &write_fixed32; in main()
305 alltypes.req_sfixed32.arg = &req_sfixed32; in main()
/nanopb-3.4.0/tests/backwards_compatibility/
Dencode_legacy.c30 alltypes.req_sfixed32 = -1009; in main()
Dalltypes_legacy.proto48 required sfixed32 req_sfixed32= 9; field
Dalltypes_legacy.h79 int32_t req_sfixed32; member
272 X(a, STATIC, REQUIRED, SFIXED32, req_sfixed32, 9) \
Ddecode_legacy.c36 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
/nanopb-3.4.0/tests/without_64bit/
Dencode_alltypes.c24 alltypes.req_sfixed32 = -1009; in main()
Dalltypes.proto42 required sfixed32 req_sfixed32= 9; field
Ddecode_alltypes.c35 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
/nanopb-3.4.0/tests/alltypes/
Dencode_alltypes.c32 alltypes.req_sfixed32 = -1009; in main()
Ddecode_alltypes.c41 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
233 TEST(alltypes.req_sfixed32 == 0); in check_alltypes()
Dalltypes.proto70 required sfixed32 req_sfixed32= 9; field
/nanopb-3.4.0/tests/field_size_16/
Dalltypes.proto69 required sfixed32 req_sfixed32= 9; field
/nanopb-3.4.0/tests/field_size_32/
Dalltypes.proto69 required sfixed32 req_sfixed32= 9; field
/nanopb-3.4.0/tests/common_unittests/
Dcommon_unittests.c29 …TEST(pb_field_iter_next(&iter) && iter.tag == 9 && iter.pData == &msg.req_sfixed32 && !iter.pSize) in main()