Searched defs:MAX_MATCH (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/boot/lib/libz/
H A Dzutil.h76 #define MAX_MATCH 258 macro
/illumos-gate/usr/src/uts/common/zmod/
H A Dzutil.h87 #define MAX_MATCH 258 macro
/illumos-gate/usr/src/boot/lib/libz/contrib/asm686/
H A Dmatch.S28 #define MAX_MATCH (258) define
30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
31 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
285 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
291 cmpl $MAX_MATCH, %eax
329 movl $MAX_MATCH, bestlen(%esp)
/illumos-gate/usr/src/boot/lib/libz/contrib/gcc_gvmat64/
H A Dgvmat64.S93 #define MAX_MATCH 258 define
95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
488 //;;; Calculate the length of the match. If it is longer than MAX_MATCH,
493 cmp eax, MAX_MATCH
538 mov r11d,MAX_MATCH
/illumos-gate/usr/src/cmd/expr/
H A Dexpr.c67 #define MAX_MATCH 20 macro
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c83 #define MAX_MATCH 258 macro
238 * wSize-MAX_MATCH bytes, but this ensures that IO is always
397 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
486 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
960 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
964 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
969 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
972 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
987 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
999 * at strstart+257. If MAX_MATCH
[all...]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmap.c6783 # define MAX_MATCH 32 macro
6952 int *fields = (int *) xalloc(sizeof(int) * (MAX_MATCH + 1));
6960 if (substrings >= MAX_MATCH)
6962 syserr("too many substrings, %d max", MAX_MATCH);
6971 MAX_MATCH + 1, substrings) == -1)
7020 regmatch_t pmatch[MAX_MATCH];
7033 name, MAX_MATCH, pmatch, 0);
7050 int fields[MAX_MATCH + 1];
7063 if (parse_fields(av[1], fields, MAX_MATCH + 1,
7087 if (*ip >= MAX_MATCH ||
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c134 #define MAX_MATCH 258 macro
387 * matches are limited to a distance of wSize-MAX_MATCH bytes,
571 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
746 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
1478 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1482 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1488 * The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2
1492 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1515 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1532 * strstart+257. If MAX_MATCH
[all...]

Completed in 87 milliseconds