HomeSort by relevance Sort by last modified time
    Searched refs:req_fixed32 (Results 1 - 10 of 10) sorted by null

  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 23 uint32_t req_fixed32 = 1008; local
114 alltypes.req_fixed32 = &req_fixed32;
decode_alltypes_pointer.c 34 TEST(alltypes.req_fixed32 && *alltypes.req_fixed32 == 1008);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 180 uint32_t req_fixed32 = 1008; local
248 alltypes.req_fixed32.funcs.decode = &read_fixed32;
249 alltypes.req_fixed32.arg = &req_fixed32;
encode_alltypes_callback.c 181 uint32_t req_fixed32 = 1008; local
232 alltypes.req_fixed32.funcs.encode = &write_fixed32;
233 alltypes.req_fixed32.arg = &req_fixed32;
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 46 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),
alltypes_legacy.h 54 uint32_t req_fixed32; member in struct:_AllTypes
encode_legacy.c 29 alltypes.req_fixed32 = 1008;
decode_legacy.c 41 TEST(alltypes.req_fixed32 == 1008);
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 26 alltypes.req_fixed32 = 1008;
decode_alltypes.c 38 TEST(alltypes.req_fixed32 == 1008);

Completed in 141 milliseconds