Home
last modified time | relevance | path

Searched refs:op (Results 1 – 3 of 3) sorted by relevance

/lz4-3.4.0-2.7.6/lib/
Dlz4.c892 BYTE* op = (BYTE*) dest; in LZ4_compress_generic_validated() local
893 BYTE* const olimit = op + maxOutputSize; in LZ4_compress_generic_validated()
1023 token = op++; in LZ4_compress_generic_validated()
1025 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)) ) { in LZ4_compress_generic_validated()
1029 …(unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /*… in LZ4_compress_generic_validated()
1030 op--; in LZ4_compress_generic_validated()
1036 for(; len >= 255 ; len-=255) *op++ = 255; in LZ4_compress_generic_validated()
1037 *op++ = (BYTE)len; in LZ4_compress_generic_validated()
1042 LZ4_wildCopy8(op, anchor, op+litLength); in LZ4_compress_generic_validated()
1043 op+=litLength; in LZ4_compress_generic_validated()
[all …]
Dlz4hc.c86 #define UPDATABLE(ip, op, anchor) &ip, &op, &anchor argument
473 #define op (*_op) in LZ4HC_encodeSequence() macro
477 BYTE* const token = op++; in LZ4HC_encodeSequence()
500 if (limit && ((op + (length / 255) + length + (2 + 1 + LASTLITERALS)) > oend)) { in LZ4HC_encodeSequence()
502 (int)length, (int)(oend - op)); in LZ4HC_encodeSequence()
508 for(; len >= 255 ; len -= 255) *op++ = 255; in LZ4HC_encodeSequence()
509 *op++ = (BYTE)len; in LZ4HC_encodeSequence()
515 LZ4_wildCopy8(op, anchor, op + length); in LZ4HC_encodeSequence()
516 op += length; in LZ4HC_encodeSequence()
520 LZ4_writeLE16(op, (U16)(ip - match)); op += 2; in LZ4HC_encodeSequence()
[all …]
/lz4-3.4.0-2.7.6/tests/
Dframetest.c275 BYTE* op = ostart; in basicTests() local
279 CHECK_V(decResult, LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL)); in basicTests()
287 op += oSize; in basicTests()
288 oSize = (size_t)(oend-op); in basicTests()
289 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
291 op += oSize; in basicTests()
292 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests()
293 { U64 const crcDest = XXH64(decodedBuffer, (size_t)(op-ostart), 1); in basicTests()
355 BYTE* op = ostart; in basicTests() local
360 size_t oSize = (size_t)(oend-op); in basicTests()
[all …]