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

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/
H A Dtrees.h102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dtrees.h102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dtrees.h102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dtrees.h102 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Dtrees.h102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Ddeflate.c143 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
215 # define nice_match MAX_MATCH
429 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
432 #if HASH_BITS < 8 || MAX_MATCH != 258
440 register uch far *strend = window + strstart + MAX_MATCH - 1;
444 register uch far *strend = window + strstart + MAX_MATCH;
463 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
475 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
492 len = (MAX_MATCH - 1) - (int)(strend-scan);
493 scan = strend - (MAX_MATCH
[all...]
H A Dmatch.S55 #define MAX_MATCH 258 define
56 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
149 mov $((MAX_MATCH>>1)-1),%ecx/* scan for at most MAX_MATCH bytes */
152 je maxmatch /* match of length MAX_MATCH? */
167 cmp $(MAX_MATCH),%eax /* len >= MAX_MATCH ? */
380 movew imm((MAX_MATCH-MIN_MATCH+1)-1),Loop_Counter
393 cmpl invert_maybe(imm(MAX_MATCH),Best_Len)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/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)
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/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-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/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-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/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)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/acorn/
H A Dmatch.s30 MAX_MATCH EQU 258 define
95 ADD r7, r2, #MAX_MATCH-256
96 ADD r7, r7, #256 ; r7 = r2 + MAX_MATCH (=258);
177 SUB r4, r2, r7 ; len = MAX_MATCH - (int)(strend - scan);
178 ADD r4, r4, #MAX_MATCH-256
181 SUB r2, r2, r4 ; scan = strend - MAX_MATCH
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dzutil.h32 #define MAX_MATCH 258 macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/amd64/
H A Damd64-match.S39 #define MAX_MATCH (258) define
41 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
42 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
389 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
394 cmpl $MAX_MATCH, %eax
429 movl $MAX_MATCH, %bestlend
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/amd64/
H A Damd64-match.S39 #define MAX_MATCH (258) define
41 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
42 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
389 /* Calculate the length of the match. If it is longer than MAX_MATCH, */
394 cmpl $MAX_MATCH, %eax
429 movl $MAX_MATCH, %bestlend
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/os2/
H A Dmatch32.asm56 MAX_MATCH equ 258 define
57 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
135 mov ecx,(MAX_MATCH-2)/2 ; scan for at most MAX_MATCH bytes
138 je maxmatch ; match of length MAX_MATCH?
153 cmp eax,MAX_MATCH ; len >= MAX_MATCH ?
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/win32/
H A Dmatch32.asm77 MAX_MATCH equ 258 define
78 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
152 mov ecx,(MAX_MATCH-2)/2 ; scan for at most MAX_MATCH bytes
155 je short maxmatch ; match of length MAX_MATCH?
170 cmp eax,MAX_MATCH ; len >= MAX_MATCH ?
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/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
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/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
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/human68k/
H A Dmatch.s36 MAX_MATCH equ 258 define
39 MAX_DIST equ WSIZE-MAX_MATCH-MIN_MATCH-1
140 move.w #(MAX_MATCH-MIN_MATCH),Loop_Counter
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/qdos/
H A Dmatch.s37 MAX_MATCH equ 258 define
40 MAX_DIST equ WSIZE-MAX_MATCH-MIN_MATCH-1
117 move.w #(MAX_MATCH-MIN_MATCH),d2
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/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

Completed in 403 milliseconds

123