Lines Matching refs:byte
574 pb_byte_t byte = (pb_byte_t)(low & 0x7F); in pb_encode_varint_32() local
579 byte |= 0x80; in pb_encode_varint_32()
580 buffer[i++] = byte; in pb_encode_varint_32()
581 byte = (pb_byte_t)(low & 0x7F); in pb_encode_varint_32()
587 byte = (pb_byte_t)(byte | ((high & 0x07) << 4)); in pb_encode_varint_32()
592 byte |= 0x80; in pb_encode_varint_32()
593 buffer[i++] = byte; in pb_encode_varint_32()
594 byte = (pb_byte_t)(high & 0x7F); in pb_encode_varint_32()
599 buffer[i++] = byte; in pb_encode_varint_32()
609 pb_byte_t byte = (pb_byte_t)value; in pb_encode_varint() local
610 return pb_write(stream, &byte, 1); in pb_encode_varint()