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

  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 41 uint32_t rep_uint32[5] = {0, 0, 0, 0, 2003}; local
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);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 190 int32_t rep_uint32[5] = {0, 0, 0, 0, 2003}; local
287 alltypes.rep_uint32.funcs.decode = &read_repeated_varint;
288 alltypes.rep_uint32.arg = rep_uint32;
encode_alltypes_callback.c 271 alltypes.rep_uint32.funcs.encode = &write_repeated_varint;
272 alltypes.rep_uint32.arg = (void*)2003;
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 58 PB_FIELD( 23, UINT32 , REPEATED, STATIC, AllTypes, rep_uint32, rep_int64, 0),
59 PB_FIELD( 24, UINT64 , REPEATED, STATIC, AllTypes, rep_uint64, rep_uint32, 0),
alltypes_legacy.h 69 uint32_t rep_uint32[5]; 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/
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);

Completed in 158 milliseconds