Home
last modified time | relevance | path

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

/external/nanopb-c/tests/alltypes_pointer/
Dencode_alltypes_pointer.c26 uint64_t req_fixed64 = 1011; in main() local
117 alltypes.req_fixed64 = &req_fixed64; in main()
Ddecode_alltypes_pointer.c38 TEST(alltypes.req_fixed64 && *alltypes.req_fixed64 == 1011); in check_alltypes()
/external/nanopb-c/tests/alltypes_callback/
Dencode_alltypes_callback.c184 uint64_t req_fixed64 = 1011; in main() local
241 alltypes.req_fixed64.funcs.encode = &write_fixed64; in main()
242 alltypes.req_fixed64.arg = &req_fixed64; in main()
Ddecode_alltypes_callback.c183 uint64_t req_fixed64 = 1011; in check_alltypes() local
257 alltypes.req_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
258 alltypes.req_fixed64.arg = &req_fixed64; in check_alltypes()
/external/nanopb-c/tests/backwards_compatibility/
Dalltypes_legacy.c49 PB_FIELD( 11, FIXED64 , REQUIRED, STATIC, AllTypes, req_fixed64, req_float, 0),
50 PB_FIELD( 12, SFIXED64, REQUIRED, STATIC, AllTypes, req_sfixed64, req_fixed64, 0),
Dalltypes_legacy.h57 uint64_t req_fixed64; member
Dencode_legacy.c33 alltypes.req_fixed64 = 1011; in main()
Ddecode_legacy.c45 TEST(alltypes.req_fixed64 == 1011); in check_alltypes()
/external/nanopb-c/tests/field_size_32/
Dalltypes.proto49 required fixed64 req_fixed64 = 11; field
/external/nanopb-c/tests/field_size_16/
Dalltypes.proto49 required fixed64 req_fixed64 = 11; field
/external/nanopb-c/tests/alltypes/
Dencode_alltypes.c30 alltypes.req_fixed64 = 1011; in main()
Dalltypes.proto49 required fixed64 req_fixed64 = 11; field
Ddecode_alltypes.c42 TEST(alltypes.req_fixed64 == 1011); in check_alltypes()