decodeULE128UsingLong() — netty Function Reference
Architecture documentation for the decodeULE128UsingLong() function in HpackDecoderULE128Benchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 380d7ceb_df2a_c296_08fd_47d51f945cda["decodeULE128UsingLong()"] de40d68e_4a6c_694e_c920_73882d2bb6c0["HpackDecoderULE128Benchmark"] 380d7ceb_df2a_c296_08fd_47d51f945cda -->|defined in| de40d68e_4a6c_694e_c920_73882d2bb6c0 73150c3e_3cc6_cb4e_983f_f772f64eb38d["decodeMaxIntUsingLong()"] 73150c3e_3cc6_cb4e_983f_f772f64eb38d -->|calls| 380d7ceb_df2a_c296_08fd_47d51f945cda 4c045bd6_da32_a2da_b609_246be602d082["decodeULE128()"] 380d7ceb_df2a_c296_08fd_47d51f945cda -->|calls| 4c045bd6_da32_a2da_b609_246be602d082 style 380d7ceb_df2a_c296_08fd_47d51f945cda fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/handler/codec/http2/HpackDecoderULE128Benchmark.java lines 93–101
static int decodeULE128UsingLong(ByteBuf in, int result) throws Http2Exception {
final int readerIndex = in.readerIndex();
final long v = decodeULE128(in, (long) result);
if (v > Integer.MAX_VALUE) {
in.readerIndex(readerIndex);
throw DECODE_ULE_128_TO_INT_DECOMPRESSION_EXCEPTION;
}
return (int) v;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does decodeULE128UsingLong() do?
decodeULE128UsingLong() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/handler/codec/http2/HpackDecoderULE128Benchmark.java.
Where is decodeULE128UsingLong() defined?
decodeULE128UsingLong() is defined in microbench/src/main/java/io/netty/handler/codec/http2/HpackDecoderULE128Benchmark.java at line 93.
What does decodeULE128UsingLong() call?
decodeULE128UsingLong() calls 1 function(s): decodeULE128.
What calls decodeULE128UsingLong()?
decodeULE128UsingLong() is called by 1 function(s): decodeMaxIntUsingLong.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free