Home
last modified time | relevance | path

Searched refs:rep_sfixed64 (Results 1 – 22 of 22) sorted by relevance

/nanopb-3.4.0/tests/alltypes_pointer/
Dencode_alltypes_pointer.c51 int64_t rep_sfixed64[5] = {0, 0, 0, 0, -2012}; in main() local
168 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64 = rep_sfixed64; in main()
Ddecode_alltypes_pointer.c61 …TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed6… in check_alltypes()
/nanopb-3.4.0/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c246 int64_t rep_sfixed64[5] = {0, 0, 0, 0, -2012}; in check_alltypes() local
303 alltypes.rep_sfixed64.funcs.decode = &read_repeated_fixed64; in check_alltypes()
304 alltypes.rep_sfixed64.arg = rep_sfixed64; in check_alltypes()
Dencode_alltypes_callback.c222 int64_t rep_sfixed64 = -2012; in main() local
272 alltypes.rep_sfixed64.funcs.encode = &write_repeated_fixed64; in main()
273 alltypes.rep_sfixed64.arg = &rep_sfixed64; in main()
/nanopb-3.4.0/tests/alltypes_proto3/
Ddecode_alltypes.c40 …TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed6… in check_alltypes()
Dalltypes.proto77 repeated sfixed64 rep_sfixed64= 32 [packed = true]; field
Dencode_alltypes.c31 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012; in main()
/nanopb-3.4.0/tests/field_size_16_proto3/
Ddecode_alltypes.c40 …TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed6… in check_alltypes()
Dalltypes.proto77 repeated sfixed64 rep_sfixed64= 32 [packed = true]; field
Dencode_alltypes.c31 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012; in main()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c256 int64_t rep_sfixed64[5] = {0, 0, 0, 0, -2012}; in check_alltypes() local
370 alltypes.rep_sfixed64.funcs.decode = &read_repeated_fixed64; in check_alltypes()
371 alltypes.rep_sfixed64.arg = rep_sfixed64; in check_alltypes()
Dencode_alltypes_callback.c260 int64_t rep_sfixed64 = -2012; in main() local
370 alltypes.rep_sfixed64.funcs.encode = &write_repeated_fixed64; in main()
371 alltypes.rep_sfixed64.arg = &rep_sfixed64; in main()
/nanopb-3.4.0/tests/backwards_compatibility/
Ddecode_legacy.c64 …TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed6… in check_alltypes()
Dencode_legacy.c57 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012; in main()
Dalltypes_legacy.proto74 repeated sfixed64 rep_sfixed64= 32 [packed = true]; field
Dalltypes_legacy.h111 int64_t rep_sfixed64[5]; member
292 X(a, STATIC, REPEATED, SFIXED64, rep_sfixed64, 32) \
/nanopb-3.4.0/tests/alltypes/
Dencode_alltypes.c60 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012; in main()
Ddecode_alltypes.c70 …TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed6… in check_alltypes()
Dalltypes.proto97 repeated sfixed64 rep_sfixed64= 32 [packed = true]; field
/nanopb-3.4.0/tests/field_size_16/
Dalltypes.proto96 repeated sfixed64 rep_sfixed64= 10032; field
/nanopb-3.4.0/tests/field_size_32/
Dalltypes.proto96 repeated sfixed64 rep_sfixed64= 10032; field
/nanopb-3.4.0/tests/common_unittests/
Dcommon_unittests.c55 …TEST(pb_field_iter_next(&iter) && iter.tag == 32 && iter.pData == &msg.rep_sfixed64 && iter.pSize … in main()