Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for huffmanDecode (0.39 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    }
    
    // HuffmanDecode decodes the string in v and writes the expanded
    // result to w, returning the number of bytes written to w and the
    // Write call's return value. At most one Write call is made.
    func HuffmanDecode(w io.Writer, v []byte) (int, error) {
    	buf := bufPool.Get().(*bytes.Buffer)
    	buf.Reset()
    	defer bufPool.Put(buf)
    	if err := huffmanDecode(buf, 0, v); err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

          @Throws(IOException::class)
          fun readByteString(): ByteString {
            val firstByte = readByte()
            val huffmanDecode = firstByte and 0x80 == 0x80 // 1NNNNNNN
            val length = readInt(firstByte, PREFIX_7_BITS).toLong()
    
            return if (huffmanDecode) {
              val decodeBuffer = Buffer()
              Huffman.decode(source, length, decodeBuffer)
              decodeBuffer.readByteString()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    func (d *Decoder) decodeString(u undecodedString) (string, error) {
    	if !u.isHuff {
    		return string(u.b), nil
    	}
    	buf := bufPool.Get().(*bytes.Buffer)
    	buf.Reset() // don't trust others
    	var s string
    	err := huffmanDecode(buf, d.maxStrLen, u.b)
    	if err == nil {
    		s = buf.String()
    	}
    	buf.Reset() // be nice to GC
    	bufPool.Put(buf)
    	return s, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_code.go

    }
    
    func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
    
    func newHuffmanEncoder(size int) *huffmanEncoder {
    	return &huffmanEncoder{codes: make([]hcode, size)}
    }
    
    // Generates a HuffmanCode corresponding to the fixed literal table.
    func generateFixedLiteralEncoding() *huffmanEncoder {
    	h := newHuffmanEncoder(maxNumLit)
    	codes := h.codes
    	var ch uint16
    	for ch = 0; ch < maxNumLit; ch++ {
    		var bits uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. src/compress/bzip2/huffman.go

    	slices.SortFunc(codes, func(a, b huffmanCode) int {
    		return cmp.Compare(a.code, b.code)
    	})
    
    	t.nodes = make([]huffmanNode, len(codes))
    	_, err := buildHuffmanNode(&t, codes, 0)
    	return t, err
    }
    
    // huffmanSymbolLengthPair contains a symbol and its code length.
    type huffmanSymbolLengthPair struct {
    	value  uint16
    	length uint8
    }
    
    // huffmanCode contains a symbol, its code and code length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/compress/flate/flate_test.go

    	var h huffmanDecoder
    	if h.init(bits) {
    		t.Fatalf("Given sequence of bits is bad, and should not succeed.")
    	}
    }
    
    // The following test should not panic.
    func TestIssue5962(t *testing.T) {
    	bits := []int{4, 0, 0, 6, 4, 3, 2, 3, 3, 4, 4, 5, 0, 0, 0, 0,
    		5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11}
    	var h huffmanDecoder
    	if h.init(bits) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  7. src/compress/flate/inflate.go

    // trees are permitted.
    func (h *huffmanDecoder) init(lengths []int) bool {
    	// Sanity enables additional runtime tests during Huffman
    	// table construction. It's intended to be used during
    	// development to supplement the currently ad-hoc unit tests.
    	const sanity = false
    
    	if h.min != 0 {
    		*h = huffmanDecoder{}
    	}
    
    	// Count number of codes of each length,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

    import okio.ByteString
    
    /**
     * This class was originally composed from the following classes in
     * [Twitter Hpack][twitter_hpack].
     *
     *  * `com.twitter.hpack.HuffmanEncoder`
     *  * `com.twitter.hpack.HuffmanDecoder`
     *  * `com.twitter.hpack.HpackUtil`
     *
     * [twitter_hpack]: https://github.com/twitter/hpack
     */
    object Huffman {
      // Appendix C: Huffman Codes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. cmd/metacache-entries_test.go

    _decoder.go", "src/compress/flate/dict_decoder_test.go", "src/compress/flate/example_test.go", "src/compress/flate/flate_test.go", "src/compress/flate/huffman_bit_writer.go", "src/compress/flate/huffman_bit_writer_test.go", "src/compress/flate/huffman_code.go", "src/compress/flate/inflate.go", "src/compress/flate/inflate_test.go", "src/compress/flate/reader_test.go", "src/compress/flate/testdata/huffman-null-max.dyn.expect", "src/compress/flate/testdata/huffman-null-max.dyn.expect-noinput", "src...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 31.6K bytes
    - Viewed (0)
  10. cmd/metacache-stream_test.go

    _decoder.go", "src/compress/flate/dict_decoder_test.go", "src/compress/flate/example_test.go", "src/compress/flate/flate_test.go", "src/compress/flate/huffman_bit_writer.go", "src/compress/flate/huffman_bit_writer_test.go", "src/compress/flate/huffman_code.go", "src/compress/flate/inflate.go", "src/compress/flate/inflate_test.go", "src/compress/flate/reader_test.go", "src/compress/flate/testdata/", "src/compress/flate/testdata/huffman-null-max.dyn.expect", "src/compress/flate/testdata/huffman-nu...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 15K bytes
    - Viewed (0)
Back to top