HomeSort by: relevance | last modified time | path
    Searched refs:EXM_THROW (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 95 #define EXM_THROW(error, ...) \
169 EXM_THROW(31, "allocation error : not enough memory");
239 if (cdict==NULL) EXM_THROW(1, "ZSTD_createCDict_advanced() allocation failure");
255 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_compress_usingCDict() failed : %s", ZSTD_getErrorName(rSize));
269 if (!cctxParams) EXM_THROW(1, "ZSTD_createCCtxParams() allocation failure");
270 if (zbc == NULL) EXM_THROW(1, "ZSTD_createCStream() allocation failure");
280 if (initErr) EXM_THROW(1, "CCtx init failed!");
287 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_CCtx_reset() failed : %s", ZSTD_getErrorName(rSize));
289 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_CCtx_setPledgedSrcSize() failed : %s", ZSTD_getErrorName(rSize));
297 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_compressStream() failed : %s", ZSTD_getErrorName(rSize))
    [all...]
  /src/external/bsd/zstd/dist/programs/
fileio_asyncio.c 49 EXM_THROW(70, "Write error : cannot write block : %s",
57 EXM_THROW(91, "1 GB skip error (sparse file support)");
77 EXM_THROW(92, "Sparse skip error ; try --no-sparse");
81 EXM_THROW(93, "Write error : cannot write block : %s",
100 EXM_THROW(92, "Sparse skip error ; try --no-sparse");
102 EXM_THROW(95, "Write error : cannot write end of decoded block : %s",
118 EXM_THROW(69, "Final skip error (sparse file support)");
123 EXM_THROW(69, "Write error : cannot write last zero : %s", strerror(errno));
150 EXM_THROW(101, "Allocation error : not enough memory");
169 EXM_THROW(102,"Failed creating ioJobsMutex mutex")
    [all...]
dibio.c 76 #define EXM_THROW(error, ...) \
139 EXM_THROW(10, "zstd: dictBuilder: %s %s ", fileNamesTable[fileIndex], strerror(errno));
149 EXM_THROW(11, "Pb reading %s", fileNamesTable[fileIndex]);
161 EXM_THROW(11, "Pb reading %s", fileNamesTable[fileIndex]);
251 if (f==NULL) EXM_THROW(3, "cannot open %s ", dictFileName);
254 if (n!=buffSize) EXM_THROW(4, "%s : write error", dictFileName) }
257 if (n!=0) EXM_THROW(5, "%s : flush error", dictFileName) }
358 EXM_THROW(12, "not enough memory for DiB_trainFiles"); /* should not happen */
368 EXM_THROW(14, "nb of samples too low"); /* we now clearly forbid this case */
fileio_common.h 58 #define EXM_THROW(error, ...) \
72 EXM_THROW(11, "%s", ZSTD_getErrorName(v)); \
fileio.c 281 if (!ret) EXM_THROW(21, "Allocation error : not enough memory");
317 if (!ret) EXM_THROW(21, "Allocation error : not enough memory");
394 EXM_THROW(1, "Adaptive mode is not compatible with single thread mode \n");
404 EXM_THROW(1, "Rsyncable mode is not compatible with single thread mode \n");
620 EXM_THROW(40, "%s is unexpectedly categorized as a regular file",
689 EXM_THROW(31, "Stat failed on dictionary file %s: %s", fileName, strerror(errno));
693 EXM_THROW(32, "Dictionary %s must be a regular file.", fileName);
719 EXM_THROW(33, "Couldn't open dictionary %s: %s", fileName, strerror(errno));
726 EXM_THROW(34, "Dictionary file %s is too large (> %u bytes)",
731 if (*bufferPtr==NULL) EXM_THROW(34, "%s", strerror(errno))
    [all...]

Completed in 29 milliseconds