OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:minMatchLength
(Results
1 - 2
of
2
) sorted by null
/prebuilts/go/darwin-x86/src/compress/flate/
deflate.go
23
minMatchLength
= 3 // The smallest match that the compressor looks for
34
hashShift = (hashBits +
minMatchLength
- 1) /
minMatchLength
99
if d.index >= 2*windowSize-(
minMatchLength
+maxMatchLength) {
220
d.length =
minMatchLength
- 1
229
if d.windowEnd-d.index <
minMatchLength
+maxMatchLength && !d.sync {
233
d.maxInsertIndex = d.windowEnd - (
minMatchLength
- 1)
244
if lookahead <
minMatchLength
+maxMatchLength {
276
d.length =
minMatchLength
- 1
284
(d.fastSkipHashing != skipNever && lookahead >
minMatchLength
-1 |
[
all
...]
/prebuilts/go/linux-x86/src/compress/flate/
deflate.go
23
minMatchLength
= 3 // The smallest match that the compressor looks for
34
hashShift = (hashBits +
minMatchLength
- 1) /
minMatchLength
99
if d.index >= 2*windowSize-(
minMatchLength
+maxMatchLength) {
220
d.length =
minMatchLength
- 1
229
if d.windowEnd-d.index <
minMatchLength
+maxMatchLength && !d.sync {
233
d.maxInsertIndex = d.windowEnd - (
minMatchLength
- 1)
244
if lookahead <
minMatchLength
+maxMatchLength {
276
d.length =
minMatchLength
- 1
284
(d.fastSkipHashing != skipNever && lookahead >
minMatchLength
-1 |
[
all
...]
Completed in 335 milliseconds