HomeSort by relevance Sort by last modified time
    Searched defs:minMatchLength (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 43 minMatchLength = 4 // The smallest match length that the compressor actually emits
124 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
197 loops := (n + 256 - minMatchLength) / 256
200 end := index + 256 + minMatchLength - 1
205 dstSize := len(toCheck) - minMatchLength + 1
262 if n > length && (n > minMatchLength || pos-i <= 4096) {
305 if len(b) < minMatchLength {
310 end := len(b) - minMatchLength + 1
375 d.length = minMatchLength - 1
385 if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 43 minMatchLength = 4 // The smallest match length that the compressor actually emits
124 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
197 loops := (n + 256 - minMatchLength) / 256
200 end := index + 256 + minMatchLength - 1
205 dstSize := len(toCheck) - minMatchLength + 1
262 if n > length && (n > minMatchLength || pos-i <= 4096) {
305 if len(b) < minMatchLength {
310 end := len(b) - minMatchLength + 1
375 d.length = minMatchLength - 1
385 if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync
    [all...]

Completed in 60 milliseconds