/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 42 uint64_t rep_uint64[5] = {0, 0, 0, 0, 2004}; local 130 alltypes.rep_uint64_count = 5; alltypes.rep_uint64 = rep_uint64;
|
decode_alltypes_pointer.c | 54 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 59 PB_FIELD( 24, UINT64 , REPEATED, STATIC, AllTypes, rep_uint64, rep_uint32, 0), 60 PB_FIELD( 25, SINT32 , REPEATED, STATIC, AllTypes, rep_sint32, rep_uint64, 0),
|
alltypes_legacy.h | 71 uint64_t rep_uint64[5]; member in struct:_AllTypes
|
decode_legacy.c | 60 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
|
encode_legacy.c | 47 alltypes.rep_uint64_count = 5; alltypes.rep_uint64[4] = 2004;
|
/external/nanopb-c/tests/alltypes/ |
alltypes.proto | 63 repeated uint64 rep_uint64 = 24 [packed = true];
|
decode_alltypes.c | 57 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
|
encode_alltypes.c | 44 alltypes.rep_uint64_count = 5; alltypes.rep_uint64[4] = 2004;
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 191 int32_t rep_uint64[5] = {0, 0, 0, 0, 2004}; local 290 alltypes.rep_uint64.funcs.decode = &read_repeated_varint; 291 alltypes.rep_uint64.arg = rep_uint64;
|
encode_alltypes_callback.c | 274 alltypes.rep_uint64.funcs.encode = &write_repeated_varint; 275 alltypes.rep_uint64.arg = (void*)2004;
|
/external/nanopb-c/tests/field_size_16/ |
alltypes.proto | 63 repeated uint64 rep_uint64 = 24;
|
/external/nanopb-c/tests/field_size_32/ |
alltypes.proto | 63 repeated uint64 rep_uint64 = 24;
|