• Home
  • Raw
  • Download

Lines Matching refs:oend

470     BYTE* oend)  in LZ4HC_encodeSequence()  argument
500 if (limit && ((op + (length / 255) + length + (2 + 1 + LASTLITERALS)) > oend)) { in LZ4HC_encodeSequence()
502 (int)length, (int)(oend - op)); in LZ4HC_encodeSequence()
525 if (limit && (op + (length / 255) + (1 + LASTLITERALS) > oend)) { in LZ4HC_encodeSequence()
571 BYTE* oend = op + maxOutputSize; in LZ4HC_compress_hashChain() local
584 …if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format res… in LZ4HC_compress_hashChain()
606 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
654 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
657 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml2, ref2, limit, oend)) { in LZ4HC_compress_hashChain()
680 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
718 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
735 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */ in LZ4HC_compress_hashChain()
736 if (limit && (op + totalSize > oend)) { in LZ4HC_compress_hashChain()
739 lastRunSize = (size_t)(oend - op) - 1 /*token*/; in LZ4HC_compress_hashChain()
768 BYTE* const maxLitPos = oend - 3; /* 2 for offset, 1 for token */ in LZ4HC_compress_hashChain()
777 if ((oend + LASTLITERALS) - (op + ll_totalCost + 2) - 1 + ml >= MFLIMIT) { in LZ4HC_compress_hashChain()
778 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, notLimited, oend); in LZ4HC_compress_hashChain()
1341 BYTE* oend = op + dstCapacity; in LZ4HC_compress_optimal() local
1351 if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format restriction */ in LZ4HC_compress_optimal()
1368 …if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), firstML, matchPos, limit, oend) ) { /* updat… in LZ4HC_compress_optimal()
1544 …if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ip - offset, limit, oend) ) { /* updates… in LZ4HC_compress_optimal()
1556 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */ in LZ4HC_compress_optimal()
1557 if (limit && (op + totalSize > oend)) { in LZ4HC_compress_optimal()
1563 lastRunSize = (size_t)(oend - op) - 1 /*token*/; in LZ4HC_compress_optimal()
1593 BYTE* const maxLitPos = oend - 3; /* 2 for offset, 1 for token */ in LZ4HC_compress_optimal()
1594 DEBUGLOG(6, "Last sequence overflowing (only %i bytes remaining)", (int)(oend-1-opSaved)); in LZ4HC_compress_optimal()
1602 if ((oend + LASTLITERALS) - (op + ll_totalCost + 2) - 1 + ovml >= MFLIMIT) { in LZ4HC_compress_optimal()
1603 …DEBUGLOG(6, "Space to end : %i + ml (%i)", (int)((oend + LASTLITERALS) - (op + ll_totalCost + 2) -… in LZ4HC_compress_optimal()
1605 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ovml, ovref, notLimited, oend); in LZ4HC_compress_optimal()