Home / Function/ getEncodedLengthSlowPath() — netty Function Reference

getEncodedLengthSlowPath() — netty Function Reference

Architecture documentation for the getEncodedLengthSlowPath() function in QpackHuffmanEncoder.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  f6690914_0175_a805_662e_6f3952e02780["getEncodedLengthSlowPath()"]
  4b79dd82_6f55_2bf1_6190_f22cb12cc745["QpackHuffmanEncoder"]
  f6690914_0175_a805_662e_6f3952e02780 -->|defined in| 4b79dd82_6f55_2bf1_6190_f22cb12cc745
  1e3bf9d5_800a_aa71_3bcc_362216e97c37["getEncodedLength()"]
  1e3bf9d5_800a_aa71_3bcc_362216e97c37 -->|calls| f6690914_0175_a805_662e_6f3952e02780
  54e813e6_f05a_21f4_818e_9c0768b978f9["length()"]
  f6690914_0175_a805_662e_6f3952e02780 -->|calls| 54e813e6_f05a_21f4_818e_9c0768b978f9
  style f6690914_0175_a805_662e_6f3952e02780 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/QpackHuffmanEncoder.java lines 115–121

    private int getEncodedLengthSlowPath(CharSequence data) {
        long len = 0;
        for (int i = 0; i < data.length(); i++) {
            len += lengths[data.charAt(i) & 0xFF];
        }
        return (int) ((len + 7) >> 3);
    }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does getEncodedLengthSlowPath() do?
getEncodedLengthSlowPath() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackHuffmanEncoder.java.
Where is getEncodedLengthSlowPath() defined?
getEncodedLengthSlowPath() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackHuffmanEncoder.java at line 115.
What does getEncodedLengthSlowPath() call?
getEncodedLengthSlowPath() calls 1 function(s): length.
What calls getEncodedLengthSlowPath()?
getEncodedLengthSlowPath() is called by 1 function(s): getEncodedLength.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free