Searched refs:literalLength (Results 1 – 1 of 1) sorted by relevance
485 uint32_t literalLength = (cmd >> 4) & 15; // 0..15 in lz4_decode() local489 if (__improbable(literalLength == 15)) { in lz4_decode()501 literalLength += s; in lz4_decode()507 if (__improbable(literalLength > (size_t)(src_end - src))) { in lz4_decode()511 if (__improbable(literalLength > (size_t)(src_end - src))) { in lz4_decode()514 if (__improbable(literalLength > (size_t)(dst_end - dst))) { in lz4_decode()517 literalLength = (uint32_t)(dst_end - dst); in lz4_decode()518 memcpy(dst, src, literalLength); in lz4_decode()519 dst += literalLength; in lz4_decode()522 memcpy(dst, src, literalLength); in lz4_decode()[all …]