Searched refs:MAX_MATCH (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dtrees.h102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
H A Ddeflate.c113 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1053 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1058 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1061 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1086 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1098 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1116 len = (MAX_MATCH - 1) - (int)(strend-scan);
1117 scan = strend - (MAX_MATCH-1);
1147 len = MAX_MATCH
[all...]
H A Ddeflate.h117 * wSize-MAX_MATCH bytes, but this ensures that IO is always
271 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
H A Dtrees.c108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
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));
1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
H A Dzutil.h82 #define MAX_MATCH 258 macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dtrees.h102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
H A Ddeflate.c113 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1053 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1058 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1061 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1086 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1098 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1116 len = (MAX_MATCH - 1) - (int)(strend-scan);
1117 scan = strend - (MAX_MATCH-1);
1147 len = MAX_MATCH
[all...]
H A Ddeflate.h117 * wSize-MAX_MATCH bytes, but this ensures that IO is always
271 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
H A Dtrees.c108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
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));
1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
H A Dzutil.h82 #define MAX_MATCH 258 macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/asm586/
H A Dmatch.S14 #define MAX_MATCH (258) define
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
17 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
295 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
301 cmpl $MAX_MATCH, %eax
342 movl $MAX_MATCH, bestlen(%esp)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/asm686/
H A Dmatch.S14 #define MAX_MATCH (258) define
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
17 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
263 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
269 cmpl $MAX_MATCH, %eax
307 movl $MAX_MATCH, bestlen(%esp)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/asm586/
H A Dmatch.S14 #define MAX_MATCH (258) define
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
17 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
295 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
301 cmpl $MAX_MATCH, %eax
342 movl $MAX_MATCH, bestlen(%esp)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/asm686/
H A Dmatch.S14 #define MAX_MATCH (258) define
16 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
17 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
263 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
269 cmpl $MAX_MATCH, %eax
307 movl $MAX_MATCH, bestlen(%esp)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dzutil.h32 #define MAX_MATCH 258 macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm25 MAX_MATCH EQU 258 define
27 MIN_LOOKAHEAD EQU (MAX_MATCH + MIN_MATCH + 1)
28 MAX_MATCH_8 EQU ((MAX_MATCH + 7) AND (NOT 7))
338 ;/* Calculate the length of the match. If it is longer than MAX_MATCH, */
344 cmp eax, MAX_MATCH
386 mov DWORD PTR[esp+bestlen], MAX_MATCH
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm25 MAX_MATCH EQU 258 define
27 MIN_LOOKAHEAD EQU (MAX_MATCH + MIN_MATCH + 1)
28 MAX_MATCH_8 EQU ((MAX_MATCH + 7) AND (NOT 7))
338 ;/* Calculate the length of the match. If it is longer than MAX_MATCH, */
344 cmp eax, MAX_MATCH
386 mov DWORD PTR[esp+bestlen], MAX_MATCH
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c96 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
569 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1;
573 register Byte *strend = s->window + s->strstart + MAX_MATCH;
578 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
581 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
601 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
613 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
631 len = (MAX_MATCH - 1) - (int)(strend-scan);
632 scan = strend - (MAX_MATCH-1);
662 len = MAX_MATCH
[all...]
H A Ddefutil.h93 * wSize-MAX_MATCH bytes, but this ensures that IO is always
256 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/
H A Dgzip.c112 #define MAX_MATCH 258 macro
115 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
285 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
612 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
615 #if HASH_BITS < 8 || MAX_MATCH != 258
618 uch *strend = G1.window + G1.strstart + MAX_MATCH;
657 len = MAX_MATCH - (int) (strend - scan);
658 scan = strend - MAX_MATCH;
914 uch length_code[MAX_MATCH - MIN_MATCH + 1];
1493 && (ush) lc <= (ush) (MAX_MATCH
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32.asm132 MAX_MATCH equ 258 define
134 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
193 add esi,MAX_MATCH-1
196 ; strend = scan + MAX_MATCH-1
461 mov ecx,(MAX_MATCH-(2+4))/4 ; scan for at most MAX_MATCH bytes
606 MAX_MATCH equ 258 define
608 MIN_LOOKAHEAD equ (MAX_MATCH + MIN_MATCH + 1)
609 MAX_MATCH_8_ equ ((MAX_MATCH + 7) AND 0FFF0h)
874 ;;; Calculate the length of the match. If it is longer than MAX_MATCH,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32.asm132 MAX_MATCH equ 258 define
134 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
193 add esi,MAX_MATCH-1
196 ; strend = scan + MAX_MATCH-1
461 mov ecx,(MAX_MATCH-(2+4))/4 ; scan for at most MAX_MATCH bytes
606 MAX_MATCH equ 258 define
608 MIN_LOOKAHEAD equ (MAX_MATCH + MIN_MATCH + 1)
609 MAX_MATCH_8_ equ ((MAX_MATCH + 7) AND 0FFF0h)
874 ;;; Calculate the length of the match. If it is longer than MAX_MATCH,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm81 MAX_MATCH equ 258 define
83 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
431 ;;; Calculate the length of the match. If it is longer than MAX_MATCH,
436 cmp eax, MAX_MATCH
473 mov r11d,MAX_MATCH
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm81 MAX_MATCH equ 258 define
83 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
431 ;;; Calculate the length of the match. If it is longer than MAX_MATCH,
436 cmp eax, MAX_MATCH
473 mov r11d,MAX_MATCH
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/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...]

Completed in 232 milliseconds

12