Home
last modified time | relevance | path

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

/nanopb-3.4.0/examples/network_server/
Dfileproto.options4 # If you come from high-level programming background, the hardcoded
/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() argument
579 while (i < 4 && (low != 0 || high != 0)) in pb_encode_varint_32()
587 if (high) in pb_encode_varint_32()
589 byte = (pb_byte_t)(byte | ((high & 0x07) << 4)); in pb_encode_varint_32()
590 high >>= 3; in pb_encode_varint_32()
592 while (high) in pb_encode_varint_32()
596 byte = (pb_byte_t)(high & 0x7F); in pb_encode_varint_32()
597 high >>= 7; in pb_encode_varint_32()
/nanopb-3.4.0/tests/field_size_16/
DSConscript2 # Also the .proto file has been modified to have high indexes.
/nanopb-3.4.0/tests/field_size_32/
DSConscript2 # Also the .proto file has been modified to have high indexes.
/nanopb-3.4.0/docs/
Dindex.md23 The high-level encoding and decoding functions take a pointer to
Dconcepts.md551 frame format, such as HDLC (high-level data link control).