Home
last modified time | relevance | path

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

/nanopb-2.7.6/examples/network_server/
Dfileproto.options4 # If you come from high-level programming background, the hardcoded
/nanopb-2.7.6/
Dpb_encode.c31 static bool checkreturn pb_encode_varint_32(pb_ostream_t *stream, uint32_t low, uint32_t high);
570 static bool checkreturn pb_encode_varint_32(pb_ostream_t *stream, uint32_t low, uint32_t high) in pb_encode_varint_32() argument
577 while (i < 4 && (low != 0 || high != 0)) in pb_encode_varint_32()
585 if (high) in pb_encode_varint_32()
587 byte = (pb_byte_t)(byte | ((high & 0x07) << 4)); in pb_encode_varint_32()
588 high >>= 3; in pb_encode_varint_32()
590 while (high) in pb_encode_varint_32()
594 byte = (pb_byte_t)(high & 0x7F); in pb_encode_varint_32()
595 high >>= 7; in pb_encode_varint_32()
/nanopb-2.7.6/tests/field_size_16/
DSConscript2 # Also the .proto file has been modified to have high indexes.
/nanopb-2.7.6/tests/field_size_32/
DSConscript2 # Also the .proto file has been modified to have high indexes.
/nanopb-2.7.6/docs/
Dindex.md23 The high-level encoding and decoding functions take a pointer to
Dconcepts.md550 frame format, such as HDLC (high-level data link control).