Home
last modified time | relevance | path

Searched refs:huffmanDecode (Results 1 – 5 of 5) sorted by relevance

/external/syzkaller/vendor/golang.org/x/net/http2/hpack/
Dhuffman.go25 if err := huffmanDecode(buf, 0, v); err != nil {
36 if err := huffmanDecode(buf, 0, v); err != nil {
49 func huffmanDecode(buf *bytes.Buffer, maxLen int, v []byte) error { func
Dhpack.go488 if err := huffmanDecode(buf, d.maxStrLen, p[:strLen]); err != nil {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DHpack.java346 boolean huffmanDecode = (firstByte & 0x80) == 0x80; // 1NNNNNNN in readByteString()
349 if (huffmanDecode) { in readByteString()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/
DHpack.java347 boolean huffmanDecode = (firstByte & 0x80) == 0x80; // 1NNNNNNN in readByteString()
350 if (huffmanDecode) { in readByteString()
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/
DHpack.java350 boolean huffmanDecode = (firstByte & 0x80) == 0x80; // 1NNNNNNN in readByteString()
353 if (huffmanDecode) { in readByteString()