findAll() — netty Function Reference
Architecture documentation for the findAll() function in SearchRealDataBenchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f5295a2a_fb66_921c_317c_16c5b456a304["findAll()"] be3c3597_b7fe_668e_fae4_63fa169a1033["SearchRealDataBenchmark"] f5295a2a_fb66_921c_317c_16c5b456a304 -->|defined in| be3c3597_b7fe_668e_fae4_63fa169a1033 style f5295a2a_fb66_921c_317c_16c5b456a304 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/microbench/search/SearchRealDataBenchmark.java lines 141–150
@Benchmark
@CompilerControl(Mode.DONT_INLINE)
public void findAll(Blackhole blackHole) {
SearchProcessor searchProcessor = searchProcessorFactory.newSearchProcessor();
int pos = 0;
do {
pos = haystack.forEachByte(pos, haystackLength - pos, searchProcessor) + 1;
blackHole.consume(pos);
} while (pos > 0);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does findAll() do?
findAll() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/microbench/search/SearchRealDataBenchmark.java.
Where is findAll() defined?
findAll() is defined in microbench/src/main/java/io/netty/microbench/search/SearchRealDataBenchmark.java at line 141.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free