Searched refs:maxCandidates (Results 1 – 4 of 4) sorted by relevance
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/ |
D | Parameters.java | 56 private Integer niceBackReferenceLength, maxCandidates, lazyThreshold; field in Parameters.Builder 180 public Builder withMaxNumberOfCandidates(int maxCandidates) { 181 this.maxCandidates = maxCandidates; 222 maxCandidates = Math.max(32, windowSize / 1024); 237 maxCandidates = Math.max(32, windowSize / 16); 250 … int candidates = maxCandidates != null ? maxCandidates : Math.max(256, windowSize / 128); 260 niceBackReferenceLength, maxCandidates, lazyThreshold; 264 … int maxLiteralLength, int niceBackReferenceLength, int maxCandidates, boolean lazyMatching, 272 this.maxCandidates = maxCandidates; 327 return maxCandidates;
|
D | LZ77Compressor.java | 538 final int maxCandidates = params.getMaxCandidates(); in longestMatch() local 539 … for (int candidates = 0; candidates < maxCandidates && matchHead >= minIndex; candidates++) { in longestMatch()
|
/external/skia/src/gpu/ |
D | GrRenderTargetOpList.cpp | 678 int maxCandidates = SkTMin(kMaxOpChainDistance, fOpChains.count()); in recordOp() local 679 if (maxCandidates) { in recordOp() 694 if (++i == maxCandidates) { in recordOp()
|
/external/skqp/src/gpu/ |
D | GrRenderTargetOpList.cpp | 674 int maxCandidates = SkTMin(kMaxOpChainDistance, fOpChains.count()); in recordOp() local 675 if (maxCandidates) { in recordOp() 690 if (++i == maxCandidates) { in recordOp()
|