Lines Matching refs:uint64_t
6 void ossl_quic_vlint_encode_n(uint8_t *buf, uint64_t v, int n) in ossl_quic_vlint_encode_n()
30 void ossl_quic_vlint_encode(uint8_t *buf, uint64_t v) in ossl_quic_vlint_encode()
35 uint64_t ossl_quic_vlint_decode_unchecked(const unsigned char *buf) 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()
49 | ((uint64_t)buf[1] << 16) in ossl_quic_vlint_decode_unchecked()
50 | ((uint64_t)buf[2] << 8) in ossl_quic_vlint_decode_unchecked()
53 return ((uint64_t)(first_byte & 0x3F) << 56) in ossl_quic_vlint_decode_unchecked()
54 | ((uint64_t)buf[1] << 48) in ossl_quic_vlint_decode_unchecked()
55 | ((uint64_t)buf[2] << 40) in ossl_quic_vlint_decode_unchecked()
56 | ((uint64_t)buf[3] << 32) in ossl_quic_vlint_decode_unchecked()
57 | ((uint64_t)buf[4] << 24) in ossl_quic_vlint_decode_unchecked()
58 | ((uint64_t)buf[5] << 16) in ossl_quic_vlint_decode_unchecked()
59 | ((uint64_t)buf[6] << 8) in ossl_quic_vlint_decode_unchecked()
63 int ossl_quic_vlint_decode(const unsigned char *buf, size_t buf_len, uint64_t *v) in ossl_quic_vlint_decode()
66 uint64_t x; in ossl_quic_vlint_decode()