Lines Matching refs:oend
474 BYTE* oend)
504 if (limit && ((op + (length / 255) + length + (2 + 1 + LASTLITERALS)) > oend)) {
506 (int)length, (int)(oend - op));
529 if (limit && (op + (length / 255) + (1 + LASTLITERALS) > oend)) {
575 BYTE* oend = op + maxOutputSize;
588 if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format restriction */
610 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
658 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
661 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml2, ref2, limit, oend)) {
684 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
722 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
739 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */
740 if (limit && (op + totalSize > oend)) {
743 lastRunSize = (size_t)(oend - op) - 1 /*token*/;
772 BYTE* const maxLitPos = oend - 3; /* 2 for offset, 1 for token */
781 if ((oend + LASTLITERALS) - (op + ll_totalCost + 2) - 1 + ml >= MFLIMIT) {
782 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, notLimited, oend);
1357 BYTE* oend = op + dstCapacity;
1367 if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format restriction */
1384 if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), firstML, matchPos, limit, oend) ) { /* updates ip, op and anchor */
1560 if ( LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ip - offset, limit, oend) ) { /* updates ip, op and anchor */
1572 if (limit == fillOutput) oend += LASTLITERALS; /* restore correct value */
1573 if (limit && (op + totalSize > oend)) {
1579 lastRunSize = (size_t)(oend - op) - 1 /*token*/;
1609 BYTE* const maxLitPos = oend - 3; /* 2 for offset, 1 for token */
1610 DEBUGLOG(6, "Last sequence overflowing (only %i bytes remaining)", (int)(oend-1-opSaved));
1618 if ((oend + LASTLITERALS) - (op + ll_totalCost + 2) - 1 + ovml >= MFLIMIT) {
1619 DEBUGLOG(6, "Space to end : %i + ml (%i)", (int)((oend + LASTLITERALS) - (op + ll_totalCost + 2) - 1), ovml);
1621 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ovml, ovref, notLimited, oend);