Searched refs:tag_byte (Results 1 – 5 of 5) sorted by relevance
255 uint8_t tag_byte; in parse_asn1_tag() local256 if (!CBS_get_u8(cbs, &tag_byte)) { in parse_asn1_tag()266 unsigned tag = ((unsigned)tag_byte & 0xe0) << CBS_ASN1_TAG_SHIFT; in parse_asn1_tag()267 unsigned tag_number = tag_byte & 0x1f; in parse_asn1_tag()
268 uint8_t tag_byte; in parse_asn1_tag() local269 if (!CBS_get_u8(cbs, &tag_byte)) { in parse_asn1_tag()279 CBS_ASN1_TAG tag = ((CBS_ASN1_TAG)tag_byte & 0xe0) << CBS_ASN1_TAG_SHIFT; in parse_asn1_tag()280 CBS_ASN1_TAG tag_number = tag_byte & 0x1f; in parse_asn1_tag()
259 Some(tag_byte) => { in encode()260 writer.write_byte(tag_byte)?; in encode()