Searched refs:prev_length (Results 1 - 13 of 13) sorted by relevance
/third_party/skia/third_party/externals/zlib/ |
H A D | deflate.c | 482 s->match_length = s->prev_length = MIN_MATCH-1; 1257 s->match_length = s->prev_length = MIN_MATCH-1; 1270 * return its length. Matches shorter or equal to prev_length are discarded, 1271 * in which case the result is equal to prev_length and match_start is 1274 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 1289 int best_len = (s->prev_length == 0) ? ACTUAL_MIN_MATCH-1 : s->prev_length; /* best match length so far */ 1318 if (s->prev_length >= s->good_match) { 1929 /* Find the longest match, discarding those <= prev_length. 2032 /* Find the longest match, discarding those <= prev_length [all...] |
H A D | deflate.h | 166 uInt prev_length; member
|
/third_party/node/deps/zlib/ |
H A D | deflate.c | 645 s->match_length = s->prev_length = MIN_MATCH-1; in deflateSetDictionary() 727 s->match_length = s->prev_length = MIN_MATCH-1; in lm_init() 1388 * return its length. Matches shorter or equal to prev_length are discarded, 1389 * in which case the result is equal to prev_length and match_start is 1392 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 1400 int best_len = (int)s->prev_length; /* best match length so far */ in longest_match() 1429 if (s->prev_length >= s->good_match) { in longest_match() 1894 /* Find the longest match, discarding those <= prev_length. in deflate_fast() 1997 /* Find the longest match, discarding those <= prev_length. in deflate_slow() 1999 s->prev_length in deflate_slow() [all...] |
H A D | deflate.h | 170 uInt prev_length; member
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | deflate.c | 487 s->match_length = s->prev_length = MIN_MATCH-1; 1265 s->match_length = s->prev_length = MIN_MATCH-1; 1278 * return its length. Matches shorter or equal to prev_length are discarded, 1279 * in which case the result is equal to prev_length and match_start is 1282 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 1297 int best_len = (int)s->prev_length; /* best match length so far */ 1326 if (s->prev_length >= s->good_match) { 1945 /* Find the longest match, discarding those <= prev_length. 2048 /* Find the longest match, discarding those <= prev_length. 2050 s->prev_length [all...] |
H A D | deflate.h | 166 uInt prev_length; member
|
/third_party/zlib/contrib/gcc_gvmat64/ |
H A D | gvmat64.S | 135 printf("#define dsPrevLen %u\n",(int)(((char*)&(s->prev_length))-((char*)s)));
163 #define prev_length [ rcx + dsPrevLen]
define 214 //;;; if (s->prev_length >= s->good_match) {
219 mov edi, prev_length
274 mov r11d, prev_length
278 //;;; int best_len = s->prev_length;
|
/third_party/zlib/ |
H A D | deflate.c | 611 s->match_length = s->prev_length = MIN_MATCH-1; in deflateSetDictionary() 694 s->match_length = s->prev_length = MIN_MATCH-1; in lm_init() 1349 * return its length. Matches shorter or equal to prev_length are discarded, 1350 * in which case the result is equal to prev_length and match_start is 1353 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 1362 int best_len = (int)s->prev_length; /* best match length so far */ in longest_match() 1391 if (s->prev_length >= s->good_match) { in longest_match() 1850 /* Find the longest match, discarding those <= prev_length. in deflate_fast() 1951 /* Find the longest match, discarding those <= prev_length. in deflate_slow() 1953 s->prev_length in deflate_slow() [all...] |
H A D | deflate.h | 170 uInt prev_length; member
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.c | 1085 s->match_length = s->prev_length = MIN_MATCH-1;
1098 * return its length. Matches shorter or equal to prev_length are discarded,
1099 * in which case the result is equal to prev_length and match_start is
1102 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1117 int best_len = s->prev_length; /* best match length so far */
1146 if (s->prev_length >= s->good_match) {
1595 /* Find the longest match, discarding those <= prev_length.
1698 /* Find the longest match, discarding those <= prev_length.
1700 s->prev_length = s->match_length, s->prev_match = s->match_start;
1703 if (hash_head != NIL && s->prev_length < [all...] |
H A D | deflate.h | 160 uInt prev_length;
member
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_afwtdn.c | 428 int prev_length; member 654 memcpy(cp->temp_in, cp->prev + s->prev_length - leftext, leftext * sizeof(*cp->temp_in)); in forward() 708 if (s->prev_length < in_length) { in forward() 711 memmove(cp->prev, cp->prev + in_length, (s->prev_length - in_length) * sizeof(*cp->prev)); in forward() 712 memcpy(cp->prev + s->prev_length - in_length, in, in_length * sizeof(*cp->prev)); in forward() 1170 s->prev_length = s->overlap_length; in config_output() 1190 cp->prev = av_calloc(s->prev_length, sizeof(*cp->prev)); in config_output()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_compile.c | 8282 PCRE2_SIZE prev_length = GET(last_branch, 1); in compile_regex() local 8284 branch_length = prev_length; in compile_regex()
|
Completed in 30 milliseconds