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

  /external/qemu/distrib/zlib-1.2.3/
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...]
deflate.h 143 * step. It must be such that after MIN_MATCH steps, the oldest
145 * hash_shift * MIN_MATCH >= hash_bits
271 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
273 * See deflate.c for comments about the MIN_MATCH+1.
trees.c 108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
109 /* length code for each normalized match length (0 == MIN_MATCH) */
112 /* First normalized length for each code (0 = MIN_MATCH) */
357 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
358 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) {
360 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
    [all...]
zutil.h 81 #define MIN_MATCH 3
  /external/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...]
deflate.h 143 * step. It must be such that after MIN_MATCH steps, the oldest
145 * hash_shift * MIN_MATCH >= hash_bits
271 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
273 * See deflate.c for comments about the MIN_MATCH+1.
trees.c 108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
109 /* length code for each normalized match length (0 == MIN_MATCH) */
112 /* First normalized length for each code (0 = MIN_MATCH) */
357 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
358 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) {
360 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20));
    [all...]
zutil.h 81 #define MIN_MATCH 3
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 25 static int MIN_MATCH = 7;
189 * - requires MIN_MATCH (7) characters to match
246 if (matched < MIN_MATCH) {
250 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /external/zlib/contrib/asm586/
match.S 15 #define MIN_MATCH (3)
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/zlib/contrib/asm686/
match.S 15 #define MIN_MATCH (3)
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  /external/zlib/contrib/masm686/
match.asm 26 MIN_MATCH EQU 3
27 MIN_LOOKAHEAD EQU (MAX_MATCH + MIN_MATCH + 1)
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 368 * - requires MIN_MATCH (7) characters to match
422 if (matched < MIN_MATCH) {
427 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
437 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
626 * Returns the rightmost MIN_MATCH (5) characters in the network portion
637 return internalGetStrippedReversed(np, MIN_MATCH);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java     [all...]
ContactsDatabaseHelper.java 349 public static final String MIN_MATCH = "min_match";
    [all...]
ContactAggregator.java     [all...]
ContactsProvider2.java     [all...]
  /external/zlib/contrib/masmx64/
gvmat64.asm 82 MIN_MATCH equ 3
83 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
  /external/zlib/contrib/masmx86/
gvmat32.asm 133 MIN_MATCH equ 3
134 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
607 MIN_MATCH equ 3
608 MIN_LOOKAHEAD equ (MAX_MATCH + MIN_MATCH + 1)

Completed in 3353 milliseconds