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

  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 42 uint64_t rep_uint64[5] = {0, 0, 0, 0, 2004}; local
130 alltypes.rep_uint64_count = 5; alltypes.rep_uint64 = rep_uint64;
decode_alltypes_pointer.c 54 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 191 int32_t rep_uint64[5] = {0, 0, 0, 0, 2004}; local
290 alltypes.rep_uint64.funcs.decode = &read_repeated_varint;
291 alltypes.rep_uint64.arg = rep_uint64;
encode_alltypes_callback.c 274 alltypes.rep_uint64.funcs.encode = &write_repeated_varint;
275 alltypes.rep_uint64.arg = (void*)2004;
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 59 PB_FIELD( 24, UINT64 , REPEATED, STATIC, AllTypes, rep_uint64, rep_uint32, 0),
60 PB_FIELD( 25, SINT32 , REPEATED, STATIC, AllTypes, rep_sint32, rep_uint64, 0),
alltypes_legacy.h 71 uint64_t rep_uint64[5]; member in struct:_AllTypes
encode_legacy.c 47 alltypes.rep_uint64_count = 5; alltypes.rep_uint64[4] = 2004;
decode_legacy.c 60 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 44 alltypes.rep_uint64_count = 5; alltypes.rep_uint64[4] = 2004;
decode_alltypes.c 57 TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] == 0);

Completed in 5135 milliseconds