hexDigitsWithChecks() — netty Function Reference
Architecture documentation for the hexDigitsWithChecks() function in DecodeHexBenchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 64eb5327_92dd_9981_06c2_9c28a14a7461["hexDigitsWithChecks()"] 5c3828dc_c4a2_3a97_8b53_37a9c4e8cecf["DecodeHexBenchmark"] 64eb5327_92dd_9981_06c2_9c28a14a7461 -->|defined in| 5c3828dc_c4a2_3a97_8b53_37a9c4e8cecf dedc7f04_282f_b427_184d_ab9ed5b7d5c2["nextHexDigits()"] 64eb5327_92dd_9981_06c2_9c28a14a7461 -->|calls| dedc7f04_282f_b427_184d_ab9ed5b7d5c2 2d1d5aef_40fb_0323_14be_4d9799b66e4d["decodeHexNibbleWithCheck()"] 64eb5327_92dd_9981_06c2_9c28a14a7461 -->|calls| 2d1d5aef_40fb_0323_14be_4d9799b66e4d style 64eb5327_92dd_9981_06c2_9c28a14a7461 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java lines 103–112
@Benchmark
@CompilerControl(Mode.DONT_INLINE)
public long hexDigitsWithChecks() {
long v = 0;
final char[] hexDigits = this.hexDigits[nextHexDigits()];
for (int i = 0, size = hexDigits.length; i < size; i++) {
v += decodeHexNibbleWithCheck(hexDigits[i]);
}
return v;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does hexDigitsWithChecks() do?
hexDigitsWithChecks() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java.
Where is hexDigitsWithChecks() defined?
hexDigitsWithChecks() is defined in microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java at line 103.
What does hexDigitsWithChecks() call?
hexDigitsWithChecks() calls 2 function(s): decodeHexNibbleWithCheck, nextHexDigits.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free