/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 47 int32_t rep_sfixed32[5] = {0, 0, 0, 0, -2009}; local 135 alltypes.rep_sfixed32_count = 5; alltypes.rep_sfixed32 = rep_sfixed32;
|
decode_alltypes_pointer.c | 60 TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 196 int32_t rep_sfixed32[5] = {0, 0, 0, 0, -2009}; local 305 alltypes.rep_sfixed32.funcs.decode = &read_repeated_fixed32; 306 alltypes.rep_sfixed32.arg = rep_sfixed32;
|
encode_alltypes_callback.c | 190 int32_t rep_sfixed32 = -2009; local 289 alltypes.rep_sfixed32.funcs.encode = &write_repeated_fixed32; 290 alltypes.rep_sfixed32.arg = &rep_sfixed32;
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 64 PB_FIELD( 29, SFIXED32, REPEATED, STATIC, AllTypes, rep_sfixed32, rep_fixed32, 0), 65 PB_FIELD( 30, FLOAT , REPEATED, STATIC, AllTypes, rep_float, rep_sfixed32, 0),
|
alltypes_legacy.h | 81 int32_t rep_sfixed32[5]; member in struct:_AllTypes
|
encode_legacy.c | 53 alltypes.rep_sfixed32_count = 5; alltypes.rep_sfixed32[4] = -2009;
|
decode_legacy.c | 66 TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
|
/external/nanopb-c/tests/alltypes/ |
encode_alltypes.c | 50 alltypes.rep_sfixed32_count = 5; alltypes.rep_sfixed32[4] = -2009;
|
decode_alltypes.c | 63 TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed32[0] == 0);
|