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

  /external/lz4/examples/
frameCompress.c 72 if (LZ4F_isError(headerSize)) {
91 if (LZ4F_isError(compressedSize)) {
105 if (LZ4F_isError(compressedSize)) {
135 if (!LZ4F_isError(ctxCreation) && src && outbuff) {
203 if (LZ4F_isError(ret)) {
260 if (LZ4F_isError(fires)) {
294 if (LZ4F_isError(dctxStatus)) {
  /external/lz4/programs/
lz4io.c 498 if (LZ4F_isError(errorCode)) EXM_THROW(30, "Allocation error : can't create LZ4F context : %s", LZ4F_getErrorName(errorCode));
521 if (LZ4F_isError(errorCode)) EXM_THROW(38, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode)); }
575 if (LZ4F_isError(cSize)) EXM_THROW(31, "Compression failed : %s", LZ4F_getErrorName(cSize));
591 if (LZ4F_isError(headerSize)) EXM_THROW(33, "File header generation failed : %s", LZ4F_getErrorName(headerSize));
602 if (LZ4F_isError(outSize)) EXM_THROW(35, "Compression failed : %s", LZ4F_getErrorName(outSize));
618 if (LZ4F_isError(headerSize)) EXM_THROW(38, "End of file generation failed : %s", LZ4F_getErrorName(headerSize));
880 if (LZ4F_isError(errorCode)) EXM_THROW(60, "Can't create LZ4F context : %s", LZ4F_getErrorName(errorCode));
898 if (LZ4F_isError(errorCode)) EXM_THROW(69, "Error : can't free LZ4F context resource : %s", LZ4F_getErrorName(errorCode));
    [all...]
  /external/lz4/tests/
frametest.c 171 #define CHECK_V(v,f) v = f; if (LZ4F_isError(v)) { fprintf(stderr, "%s\n", LZ4F_getErrorName(v)); goto _output_error; }
325 if (!LZ4F_isError(decompressError)) goto _output_error;
487 if (!LZ4F_isError(cErr)) goto _output_error;
    [all...]
fullbench.c 354 if (LZ4F_isError(errorCode)) { DISPLAY("dctx allocation issue \n"); return 10; } }
565 if (LZ4F_isError(errorCode)) {
  /external/lz4/lib/
lz4frame.c 232 unsigned LZ4F_isError(LZ4F_errorCode_t code)
240 if (LZ4F_isError(code)) return LZ4F_errorStrings[-(int)(code)];
246 if (!LZ4F_isError(functionResult)) return LZ4F_OK_NoError;
355 * or an error code if it fails (can be tested using LZ4F_isError())
388 if (LZ4F_isError(headerSize)) return headerSize;
392 if (LZ4F_isError(cSize)) return cSize;
396 if (LZ4F_isError(tailSize)) return tailSize;
408 * or an error code if it fails (can be tested using LZ4F_isError())
418 if (LZ4F_isError(result)) return result;
579 * or an error code (can be tested using LZ4F_isError())
    [all...]
lz4frame.h 97 LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code); /**< tells when a function result is an error code */
213 * or an error code if it fails (can be tested using LZ4F_isError())
256 * or an error code (which can be tested using LZ4F_isError())
284 * or an error code if it fails (which can be tested using LZ4F_isError())
297 * or an error code if it fails (which can be tested using LZ4F_isError())
309 * or an error code if it fails (which can be tested using LZ4F_isError())
335 * The result is an errorCode, which can be tested using LZ4F_isError().
365 * or an error code which can be tested using LZ4F_isError().
396 * If decompression failed, @return is an error code, which can be tested using LZ4F_isError().
503 * or an error code if it fails (can be tested using LZ4F_isError()) */
    [all...]

Completed in 263 milliseconds