Home
last modified time | relevance | path

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

/nanopb-3.4.0/
Dpb_encode.c31 static bool checkreturn pb_encode_varint_32(pb_ostream_t *stream, uint32_t low, uint32_t high);
572 static bool checkreturn pb_encode_varint_32(pb_ostream_t *stream, uint32_t low, uint32_t high) in pb_encode_varint_32() function
617 return pb_encode_varint_32(stream, value, 0); in pb_encode_varint()
619 return pb_encode_varint_32(stream, (uint32_t)value, (uint32_t)(value >> 32)); in pb_encode_varint()
822 return pb_encode_varint_32(stream, (uint32_t)value, (uint32_t)-1); in pb_enc_varint()