Searched refs:first_byte (Results 1 – 4 of 4) sorted by relevance
37 uint8_t first_byte = buf[0]; in ossl_quic_vlint_decode_unchecked() local38 size_t sz = ossl_quic_vlint_decode_len(first_byte); in ossl_quic_vlint_decode_unchecked()41 return first_byte & 0x3F; in ossl_quic_vlint_decode_unchecked()44 return ((uint64_t)(first_byte & 0x3F) << 8) in ossl_quic_vlint_decode_unchecked()48 return ((uint64_t)(first_byte & 0x3F) << 24) in ossl_quic_vlint_decode_unchecked()53 return ((uint64_t)(first_byte & 0x3F) << 56) in ossl_quic_vlint_decode_unchecked()
97 static ossl_unused ossl_inline size_t ossl_quic_vlint_decode_len(uint8_t first_byte) in ossl_quic_vlint_decode_len() argument99 return 1U << ((first_byte & 0xC0) >> 6); in ossl_quic_vlint_decode_len()
253 unsigned char *first_byte,263 unsigned char *first_byte,
139 unsigned char *first_byte, in ossl_quic_hdr_protector_decrypt_fields() argument147 *first_byte ^= mask[0] & ((*first_byte & 0x80) != 0 ? 0xf : 0x1f); in ossl_quic_hdr_protector_decrypt_fields()148 pn_len = (*first_byte & 0x3) + 1; in ossl_quic_hdr_protector_decrypt_fields()169 unsigned char *first_byte, in ossl_quic_hdr_protector_encrypt_fields() argument177 pn_len = (*first_byte & 0x3) + 1; in ossl_quic_hdr_protector_encrypt_fields()181 *first_byte ^= mask[0] & ((*first_byte & 0x80) != 0 ? 0xf : 0x1f); in ossl_quic_hdr_protector_encrypt_fields()
Completed in 11 milliseconds