Lines Matching refs:cpy
941 BYTE *cpy; in real_LZ4_uncompress() local
962 cpy = op + length; in real_LZ4_uncompress()
964 if (cpy < op) in real_LZ4_uncompress()
966 if unlikely(cpy > oend - COPYLENGTH) { in real_LZ4_uncompress()
967 if (cpy != oend) in real_LZ4_uncompress()
974 LZ4_WILDCOPY(ip, op, cpy); in real_LZ4_uncompress()
975 ip -= (op - cpy); in real_LZ4_uncompress()
976 op = cpy; in real_LZ4_uncompress()
979 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); in real_LZ4_uncompress()
1015 cpy = op + length - (STEPSIZE - 4); in real_LZ4_uncompress()
1016 if (cpy > oend - COPYLENGTH) { in real_LZ4_uncompress()
1017 if (cpy > oend) in real_LZ4_uncompress()
1024 while (op < cpy) in real_LZ4_uncompress()
1026 op = cpy; in real_LZ4_uncompress()
1035 LZ4_SECURECOPY(ref, op, cpy); in real_LZ4_uncompress()
1036 op = cpy; /* correction */ in real_LZ4_uncompress()
1058 BYTE *cpy; in LZ4_uncompress_unknownOutputSize() local
1080 cpy = op + length; in LZ4_uncompress_unknownOutputSize()
1082 if (cpy < op) in LZ4_uncompress_unknownOutputSize()
1084 if ((cpy > oend - COPYLENGTH) || in LZ4_uncompress_unknownOutputSize()
1086 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
1100 LZ4_WILDCOPY(ip, op, cpy); in LZ4_uncompress_unknownOutputSize()
1101 ip -= (op - cpy); in LZ4_uncompress_unknownOutputSize()
1102 op = cpy; in LZ4_uncompress_unknownOutputSize()
1105 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); in LZ4_uncompress_unknownOutputSize()
1144 cpy = op + length - (STEPSIZE - 4); in LZ4_uncompress_unknownOutputSize()
1145 if (cpy > oend - COPYLENGTH) { in LZ4_uncompress_unknownOutputSize()
1146 if (cpy > oend) in LZ4_uncompress_unknownOutputSize()
1153 while (op < cpy) in LZ4_uncompress_unknownOutputSize()
1155 op = cpy; in LZ4_uncompress_unknownOutputSize()
1164 LZ4_SECURECOPY(ref, op, cpy); in LZ4_uncompress_unknownOutputSize()
1165 op = cpy; /* correction */ in LZ4_uncompress_unknownOutputSize()