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

  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 74 uint32_t opt_fixed32 = 3048; local
156 alltypes.opt_fixed32 = &opt_fixed32;
decode_alltypes_pointer.c 90 TEST(alltypes.opt_fixed32 == NULL);
113 TEST(alltypes.opt_fixed32 && *alltypes.opt_fixed32 == 3048);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 210 uint32_t opt_fixed32 = 3048; local
363 alltypes.opt_fixed32.funcs.decode = &read_fixed32;
364 alltypes.opt_fixed32.arg = &opt_fixed32;
encode_alltypes_callback.c 197 uint32_t opt_fixed32 = 3048; local
344 alltypes.opt_fixed32.funcs.encode = &write_fixed32;
345 alltypes.opt_fixed32.arg = &opt_fixed32;
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 80 PB_FIELD( 48, FIXED32 , OPTIONAL, STATIC, AllTypes, opt_fixed32, opt_bool, &AllTypes_opt_fixed32_default),
81 PB_FIELD( 49, SFIXED32, OPTIONAL, STATIC, AllTypes, opt_sfixed32, opt_fixed32, &AllTypes_opt_sfixed32_default),
alltypes_legacy.h 113 uint32_t opt_fixed32; member in struct:_AllTypes
encode_legacy.c 91 alltypes.opt_fixed32 = 3048;
decode_legacy.c 103 TEST(alltypes.opt_fixed32 == 4048);
147 TEST(alltypes.opt_fixed32 == 3048);
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 100 alltypes.opt_fixed32 = 3048;
decode_alltypes.c 101 TEST(alltypes.opt_fixed32 == 4048);
146 TEST(alltypes.opt_fixed32 == 3048);

Completed in 72 milliseconds