HomeSort by relevance Sort by last modified time
    Searched refs:MIN_MATCH (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/clang/test/CoverageMapping/
loopmacro.c 13 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
26 #define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
33 #define MIN_MATCH 3
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
177 * input characters and the first MIN_MATCH bytes of str are valid
178 * (except for the last MIN_MATCH-1 bytes of the input file).
182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.h 102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 113 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
115 * See deflate.c for comments about the MIN_MATCH+1.
152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
180 * input characters and the first MIN_MATCH bytes of str are valid
181 * (except for the last MIN_MATCH-1 bytes of the input file).
185 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
190 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
285 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
334 if (length < MIN_MATCH) return Z_OK;
    [all...]
  /external/python/cpython2/Modules/zlib/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
177 * input characters and the first MIN_MATCH bytes of str are valid
178 * (except for the last MIN_MATCH-1 bytes of the input file).
182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1])
    [all...]
  /external/python/cpython3/Modules/zlib/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 149 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
173 * characters and the first MIN_MATCH bytes of str are valid (except for
174 * the last MIN_MATCH-1 bytes of the input file).
178 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
183 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
319 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
417 while (s->lookahead >= MIN_MATCH) {
419 n = s->lookahead - (MIN_MATCH-1);
421 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1])
    [all...]
  /external/syslinux/com32/lib/zlib/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
174 * input characters and the first MIN_MATCH bytes of str are valid
175 * (except for the last MIN_MATCH-1 bytes of the input file).
179 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
184 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
279 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
330 if (length < MIN_MATCH) return Z_OK;
345 for (n = 0; n <= length - MIN_MATCH; n++) {
    [all...]
  /external/zlib/src/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 149 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
173 * characters and the first MIN_MATCH bytes of str are valid (except for
174 * the last MIN_MATCH-1 bytes of the input file).
178 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
183 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
319 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
417 while (s->lookahead >= MIN_MATCH) {
419 n = s->lookahead - (MIN_MATCH-1);
421 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1])
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
trees.h 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
deflate.c 146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
177 * input characters and the first MIN_MATCH bytes of str are valid
178 * (except for the last MIN_MATCH-1 bytes of the input file).
182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1])
    [all...]
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 25 static int MIN_MATCH = 7;
162 * - requires MIN_MATCH (7) characters to match
219 if (matched < MIN_MATCH) {
223 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
233 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /external/brotli/research/
deorummolae.cc 14 #define MIN_MATCH 24
234 effective_lcp >= MIN_MATCH) {
252 if (best_cost == 0 || best_isle.lcp < MIN_MATCH) {
  /external/zlib/src/contrib/asm686/
match.S 29 #define MIN_MATCH (3)
30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoneNumber.java 125 phoneValues.put(PhoneLookupColumns.MIN_MATCH,
131 phoneValues.put(PhoneLookupColumns.MIN_MATCH,
  /toolchain/binutils/binutils-2.27/zlib/contrib/asm686/
match.S 29 #define MIN_MATCH (3)
30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/freetype/src/gzip/
zutil.h 64 #define MIN_MATCH 3
  /external/zlib/src/contrib/amd64/
amd64-match.S 40 #define MIN_MATCH (3)
41 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/zlib/src/contrib/gcc_gvmat64/
gvmat64.S 94 #define MIN_MATCH 3
95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  /toolchain/binutils/binutils-2.27/zlib/contrib/amd64/
amd64-match.S 40 #define MIN_MATCH (3)
41 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /toolchain/binutils/binutils-2.27/zlib/contrib/gcc_gvmat64/
gvmat64.S 94 #define MIN_MATCH 3
95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)

Completed in 1073 milliseconds

1 2 3