Home
last modified time | relevance | path

Searched refs:match_end (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/osfmk/vm/
H A Dlz4.c250 const uint8_t *match_end = 0; // first byte after matched sequence in lz4_encode_2gb() local
288 match_end = match_begin + 4; in lz4_encode_2gb()
295 match_end = match_begin + 4; in lz4_encode_2gb()
302 match_end = match_begin + 4; in lz4_encode_2gb()
309 match_end = match_begin + 4; in lz4_encode_2gb()
361 const uint8_t * ref_end = match_end - match_distance; in lz4_encode_2gb()
362 while (match_end < src_end) { in lz4_encode_2gb()
363 size_t n = lz4_nmatch(LZ4_MATCH_SEARCH_LOOP_SIZE, ref_end, match_end); in lz4_encode_2gb()
365 match_end += n; break; in lz4_encode_2gb()
367 match_end += LZ4_MATCH_SEARCH_LOOP_SIZE; in lz4_encode_2gb()
[all …]