Home
last modified time | relevance | path

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

/xnu-10002.1.13/osfmk/vm/
H A Dlz4.c486 uint32_t matchLength = 4 + (cmd & 15); // 4..19 in lz4_decode() local
564 if (__improbable(matchLength == 19)) { in lz4_decode()
576 matchLength += s; in lz4_decode()
581 if (__improbable(matchLength > (size_t)(dst_end - dst))) { in lz4_decode()
584 matchLength = (uint32_t)(dst_end - dst); in lz4_decode()
585 for (uint32_t i = 0; i < matchLength; ++i) { in lz4_decode()
588 dst += matchLength; in lz4_decode()
591 for (uint64_t i = 0; i < matchLength; i++) { in lz4_decode()
594 dst += matchLength; in lz4_decode()