Home
last modified time | relevance | path

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

/nanopb-3.4.0/tests/alltypes_pointer/
Dencode_alltypes_pointer.c41 int64_t rep_int64[5] = {0, 0, 0, 0, -2002}; in main() local
158 alltypes.rep_int64_count = 5; alltypes.rep_int64 = rep_int64; in main()
Ddecode_alltypes_pointer.c49 …TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
/nanopb-3.4.0/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c236 int32_t rep_int64[5] = {0, 0, 0, 0, -2002}; in check_alltypes() local
273 alltypes.rep_int64.funcs.decode = &read_repeated_varint; in check_alltypes()
274 alltypes.rep_int64.arg = rep_int64; in check_alltypes()
Dencode_alltypes_callback.c242 alltypes.rep_int64.funcs.encode = &write_repeated_varint; in main()
243 alltypes.rep_int64.arg = (void*)-2002; in main()
/nanopb-3.4.0/tests/alltypes_proto3/
Ddecode_alltypes.c28 …TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
Dalltypes.proto65 repeated int64 rep_int64 = 22 [packed = true]; field
Dencode_alltypes.c19 alltypes.rep_int64_count = 5; alltypes.rep_int64[4] = -2002; in main()
/nanopb-3.4.0/tests/field_size_16_proto3/
Ddecode_alltypes.c28 …TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
Dalltypes.proto65 repeated int64 rep_int64 = 22 [packed = true]; field
Dencode_alltypes.c19 alltypes.rep_int64_count = 5; alltypes.rep_int64[4] = -2002; in main()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c246 int32_t rep_int64[5] = {0, 0, 0, 0, -2002}; in check_alltypes() local
340 alltypes.rep_int64.funcs.decode = &read_repeated_varint; in check_alltypes()
341 alltypes.rep_int64.arg = rep_int64; in check_alltypes()
Dencode_alltypes_callback.c340 alltypes.rep_int64.funcs.encode = &write_repeated_varint; in main()
341 alltypes.rep_int64.arg = (void*)-2002; in main()
/nanopb-3.4.0/tests/backwards_compatibility/
Ddecode_legacy.c52 …TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
Dencode_legacy.c45 alltypes.rep_int64_count = 5; alltypes.rep_int64[4] = -2002; in main()
Dalltypes_legacy.proto62 repeated int64 rep_int64 = 22 [packed = true]; field
Dalltypes_legacy.h91 int64_t rep_int64[5]; member
282 X(a, STATIC, REPEATED, INT64, rep_int64, 22) \
/nanopb-3.4.0/tests/alltypes/
Dencode_alltypes.c48 alltypes.rep_int64_count = 5; alltypes.rep_int64[4] = -2002; in main()
Ddecode_alltypes.c58 …TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
Dalltypes.proto85 repeated int64 rep_int64 = 22 [packed = true]; field
/nanopb-3.4.0/tests/field_size_16/
Dalltypes.proto84 repeated int64 rep_int64 = 22; field
/nanopb-3.4.0/tests/field_size_32/
Dalltypes.proto84 repeated int64 rep_int64 = 22; field
/nanopb-3.4.0/tests/common_unittests/
Dcommon_unittests.c45 …TEST(pb_field_iter_next(&iter) && iter.tag == 22 && iter.pData == &msg.rep_int64 && iter.pSize … in main()