/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 50 int64_t rep_sfixed64[5] = {0, 0, 0, 0, -2012}; local 138 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64 = rep_sfixed64;
|
decode_alltypes_pointer.c | 64 TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 199 int64_t rep_sfixed64[5] = {0, 0, 0, 0, -2012}; local 314 alltypes.rep_sfixed64.funcs.decode = &read_repeated_fixed64; 315 alltypes.rep_sfixed64.arg = rep_sfixed64;
|
encode_alltypes_callback.c | 193 int64_t rep_sfixed64 = -2012; local 298 alltypes.rep_sfixed64.funcs.encode = &write_repeated_fixed64; 299 alltypes.rep_sfixed64.arg = &rep_sfixed64;
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 67 PB_FIELD( 32, SFIXED64, REPEATED, STATIC, AllTypes, rep_sfixed64, rep_fixed64, 0), 68 PB_FIELD( 33, DOUBLE , REPEATED, STATIC, AllTypes, rep_double, rep_sfixed64, 0),
|
alltypes_legacy.h | 87 int64_t rep_sfixed64[5]; member in struct:_AllTypes
|
encode_legacy.c | 57 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012;
|
decode_legacy.c | 70 TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
|
/external/nanopb-c/tests/alltypes/ |
encode_alltypes.c | 54 alltypes.rep_sfixed64_count = 5; alltypes.rep_sfixed64[4] = -2012;
|
decode_alltypes.c | 67 TEST(alltypes.rep_sfixed64_count == 5 && alltypes.rep_sfixed64[4] == -2012 && alltypes.rep_sfixed64[0] == 0);
|