• Home
  • Raw
  • Download

Lines Matching refs:oend

469     BYTE* oend)  in LZ4HC_encodeSequence()  argument
493 …if ((limit) && ((*op + (length / 255) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* C… in LZ4HC_encodeSequence()
514 …if ((limit) && (*op + (length / 255) + (1 + LASTLITERALS) > oend)) return 1; /* Check output lim… in LZ4HC_encodeSequence()
554 BYTE* oend = op + maxOutputSize; in LZ4HC_compress_hashChain() local
567 …if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format res… in LZ4HC_compress_hashChain()
589 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
637 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
640 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml2, ref2, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
659 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
697 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
714 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */ in LZ4HC_compress_hashChain()
715 if (limit && (op + totalSize > oend)) { in LZ4HC_compress_hashChain()
718 lastRunSize = (size_t)(oend - op) - 1; in LZ4HC_compress_hashChain()
1300 BYTE* oend = op + dstCapacity; in LZ4HC_compress_optimal() local
1305 if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format restriction */ in LZ4HC_compress_optimal()
1323 …if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), firstML, matchPos, limit, oend) ) /* update… in LZ4HC_compress_optimal()
1496 …if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ip - offset, limit, oend) ) /* updates … in LZ4HC_compress_optimal()
1506 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */ in LZ4HC_compress_optimal()
1507 if (limit && (op + totalSize > oend)) { in LZ4HC_compress_optimal()
1510 lastRunSize = (size_t)(oend - op) - 1; in LZ4HC_compress_optimal()