OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rep_uint32_count
(Results
1 - 7
of
7
) sorted by null
/external/nanopb-c/tests/alltypes/
encode_alltypes.c
43
alltypes.
rep_uint32_count
= 5; alltypes.rep_uint32[4] = 2003;
decode_alltypes.c
56
TEST(alltypes.
rep_uint32_count
== 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
/external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.h
68
size_t
rep_uint32_count
;
member in struct:_AllTypes
encode_legacy.c
46
alltypes.
rep_uint32_count
= 5; alltypes.rep_uint32[4] = 2003;
decode_legacy.c
59
TEST(alltypes.
rep_uint32_count
== 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
/external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c
129
alltypes.
rep_uint32_count
= 5; alltypes.rep_uint32 = rep_uint32;
decode_alltypes_pointer.c
53
TEST(alltypes.
rep_uint32_count
== 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] == 0);
Completed in 32 milliseconds