decodeHexNibbleWithCheck() — netty Function Reference
Architecture documentation for the decodeHexNibbleWithCheck() function in DecodeHexBenchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2d1d5aef_40fb_0323_14be_4d9799b66e4d["decodeHexNibbleWithCheck()"] 5c3828dc_c4a2_3a97_8b53_37a9c4e8cecf["DecodeHexBenchmark"] 2d1d5aef_40fb_0323_14be_4d9799b66e4d -->|defined in| 5c3828dc_c4a2_3a97_8b53_37a9c4e8cecf 64eb5327_92dd_9981_06c2_9c28a14a7461["hexDigitsWithChecks()"] 64eb5327_92dd_9981_06c2_9c28a14a7461 -->|calls| 2d1d5aef_40fb_0323_14be_4d9799b66e4d style 2d1d5aef_40fb_0323_14be_4d9799b66e4d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java lines 167–175
private static int decodeHexNibbleWithCheck(final char c) {
if (c >= HEX2B.length) {
return -1;
}
if (PlatformDependent.hasUnsafe()) {
return PlatformDependent.getByte(HEX2B, c);
}
return HEX2B[c];
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does decodeHexNibbleWithCheck() do?
decodeHexNibbleWithCheck() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java.
Where is decodeHexNibbleWithCheck() defined?
decodeHexNibbleWithCheck() is defined in microbench/src/main/java/io/netty/handler/codec/http/DecodeHexBenchmark.java at line 167.
What calls decodeHexNibbleWithCheck()?
decodeHexNibbleWithCheck() is called by 1 function(s): hexDigitsWithChecks.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free