Searched refs:cur_match (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.c | 89 uInt longest_match OF((deflate_state *s, IPos cur_match)); 91 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 94 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); 1027 local uInt longest_match(s, cur_match) in longest_match() argument 1029 IPos cur_match; /* current match */ 1075 Assert(cur_match < s->strstart, "no future"); 1076 match = s->window + cur_match; 1153 s->match_start = cur_match; 1163 } while ((cur_match = prev[cur_match & wmask]) > limit 1175 local uInt longest_match_fast(s, cur_match) in longest_match_fast() argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.c | 90 uInt longest_match OF((deflate_state *s, IPos cur_match)); 92 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 1148 local uInt longest_match(s, cur_match) in longest_match() argument 1150 IPos cur_match; /* current match */ 1196 Assert(cur_match < s->strstart, "no future"); 1197 match = s->window + cur_match; 1274 s->match_start = cur_match; 1284 } while ((cur_match = prev[cur_match & wmask]) > limit 1297 local uInt longest_match(s, cur_match) in longest_match() argument 1299 IPos cur_match; /* current match */ [all …]
|