HomeSort by relevance Sort by last modified time
    Searched refs:LZ4F_isError (Results 1 - 6 of 6) sorted by null

  /external/lz4/tests/
frametest.c 200 if (LZ4F_isError(cSize)) goto _output_error;
205 if (LZ4F_isError(errorCode)) goto _output_error; }
211 if (LZ4F_isError(errorCode)) goto _output_error;
216 if (LZ4F_isError(errorCode)) goto _output_error; }
223 if (LZ4F_isError(cSize)) goto _output_error;
233 if (LZ4F_isError(errorCode)) goto _output_error;
237 if (LZ4F_isError(decompressError)) goto _output_error; }
252 if (LZ4F_isError(decResult)) goto _output_error;
276 if (LZ4F_isError(errorCode)) goto _output_error;
294 if (LZ4F_isError(errorCode)) goto _output_error
    [all...]
fullbench.c 324 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } }
530 if (LZ4F_isError(errorCode)) {
  /external/lz4/examples/
frameCompress.c 29 if (LZ4F_isError(r)) {
50 if (LZ4F_isError(n)) {
64 if (LZ4F_isError(n)) {
88 if (LZ4F_isError(n)) {
140 if (LZ4F_isError(ret)) {
160 if (LZ4F_isError(ret)) {
182 if (LZ4F_isError(ret)) {
  /external/lz4/programs/
lz4io.c 412 if (LZ4F_isError(errorCode)) EXM_THROW(30, "Allocation error : can't create LZ4F context : %s", LZ4F_getErrorName(errorCode));
429 if (LZ4F_isError(errorCode)) EXM_THROW(38, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode)); }
481 if (LZ4F_isError(cSize)) EXM_THROW(31, "Compression failed : %s", LZ4F_getErrorName(cSize));
497 if (LZ4F_isError(headerSize)) EXM_THROW(33, "File header generation failed : %s", LZ4F_getErrorName(headerSize));
508 if (LZ4F_isError(outSize)) EXM_THROW(35, "Compression failed : %s", LZ4F_getErrorName(outSize));
524 if (LZ4F_isError(headerSize)) EXM_THROW(38, "End of file generation failed : %s", LZ4F_getErrorName(headerSize));
766 if (LZ4F_isError(errorCode)) EXM_THROW(60, "Can't create LZ4F context : %s", LZ4F_getErrorName(errorCode));
782 if (LZ4F_isError(errorCode)) EXM_THROW(69, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode));
799 if (LZ4F_isError(nextToLoad)) EXM_THROW(62, "Header error : %s", LZ4F_getErrorName(nextToLoad));
818 if (LZ4F_isError(nextToLoad)) EXM_THROW(66, "Decompression error : %s", LZ4F_getErrorName(nextToLoad))
    [all...]
  /external/lz4/lib/
lz4frame.h 80 LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code);
174 * or an error code if it fails (can be tested using LZ4F_isError())
216 * or an error code (which can be tested using LZ4F_isError())
236 * or an error code if it fails (which can be tested using LZ4F_isError())
246 * or an error code if it fails (which can be tested using LZ4F_isError())
256 * or an error code if it fails (which can be tested using LZ4F_isError())
279 * The result is an errorCode, which can be tested using LZ4F_isError().
299 * or an error code which can be tested using LZ4F_isError()
325 * If decompression failed, @return is an error code, which can be tested using LZ4F_isError().
lz4frame.c 192 unsigned LZ4F_isError(LZ4F_errorCode_t code)
200 if (LZ4F_isError(code)) return LZ4F_errorStrings[-(int)(code)];
206 if (!LZ4F_isError(functionResult)) return LZ4F_OK_NoError;
307 * The function outputs an error code if it fails (can be tested using LZ4F_isError())
348 if (LZ4F_isError(headerSize)) return headerSize;
352 if (LZ4F_isError(cSize)) return cSize;
356 if (LZ4F_isError(tailSize)) return tailSize;
410 * or an error code (can be tested using LZ4F_isError())
560 * The function outputs an error code if it fails (can be tested using LZ4F_isError())
655 * The function outputs an error code if it fails (can be tested using LZ4F_isError())
    [all...]

Completed in 87 milliseconds