Home
last modified time | relevance | path

Searched refs:req_fixed32 (Results 1 – 13 of 13) sorted by relevance

/external/nanopb-c/tests/alltypes_pointer/
Dencode_alltypes_pointer.c23 uint32_t req_fixed32 = 1008; in main() local
114 alltypes.req_fixed32 = &req_fixed32; in main()
Ddecode_alltypes_pointer.c34 TEST(alltypes.req_fixed32 && *alltypes.req_fixed32 == 1008); in check_alltypes()
/external/nanopb-c/tests/alltypes_callback/
Dencode_alltypes_callback.c181 uint32_t req_fixed32 = 1008; in main() local
232 alltypes.req_fixed32.funcs.encode = &write_fixed32; in main()
233 alltypes.req_fixed32.arg = &req_fixed32; in main()
Ddecode_alltypes_callback.c180 uint32_t req_fixed32 = 1008; in check_alltypes() local
248 alltypes.req_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
249 alltypes.req_fixed32.arg = &req_fixed32; in check_alltypes()
/external/nanopb-c/tests/backwards_compatibility/
Dalltypes_legacy.c46 PB_FIELD( 8, FIXED32 , REQUIRED, STATIC, AllTypes, req_fixed32, req_bool, 0),
47 PB_FIELD( 9, SFIXED32, REQUIRED, STATIC, AllTypes, req_sfixed32, req_fixed32, 0),
Dencode_legacy.c29 alltypes.req_fixed32 = 1008; in main()
Dalltypes_legacy.h54 uint32_t req_fixed32; member
Ddecode_legacy.c41 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
/external/nanopb-c/tests/field_size_16/
Dalltypes.proto45 required fixed32 req_fixed32 = 8; field
/external/nanopb-c/tests/field_size_32/
Dalltypes.proto45 required fixed32 req_fixed32 = 8; field
/external/nanopb-c/tests/alltypes/
Dencode_alltypes.c26 alltypes.req_fixed32 = 1008; in main()
Dalltypes.proto45 required fixed32 req_fixed32 = 8; field
Ddecode_alltypes.c38 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()