Home
last modified time | relevance | path

Searched refs:malloc_orDie (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/sys/contrib/zstd/examples/
H A Dstreaming_compression_thread_pool.c43 void* const buffIn = malloc_orDie(buffInSize); in compressFile_orDie()
45 void* const buffOut = malloc_orDie(buffOutSize); in compressFile_orDie()
122 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie()
157 pthread_t *threads = malloc_orDie(argc * sizeof(pthread_t)); in main()
158 compress_args_t *args = malloc_orDie(argc * sizeof(compress_args_t)); in main()
H A Dmultiple_simple_compression.c49 *ofn = (char*)malloc_orDie(*ofnBufferLen); in createResources_orDie()
50 ress.fBuffer = malloc_orDie(ress.fBufferSize); in createResources_orDie()
51 ress.cBuffer = malloc_orDie(ress.cBufferSize); in createResources_orDie()
H A Dstreaming_compression.c32 void* const buffIn = malloc_orDie(buffInSize); in compressFile_orDie()
34 void* const buffOut = malloc_orDie(buffOutSize); in compressFile_orDie()
101 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie()
H A Dmultiple_streaming_compression.c36 ress.buffIn = malloc_orDie(ress.buffInSize); in createResources_orDie()
37 ress.buffOut= malloc_orDie(ress.buffOutSize); in createResources_orDie()
119 ofnBuffer = malloc_orDie(ofnbSize); in main()
H A Dsimple_compression.c22 void* const cBuff = malloc_orDie(cBuffSize); in compress_orDie()
44 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie()
H A Dstreaming_decompression.c21 void* const buffIn = malloc_orDie(buffInSize); in decompressFile_orDie()
24 void* const buffOut = malloc_orDie(buffOutSize); in decompressFile_orDie()
H A Ddictionary_compression.c35 void* const cBuff = malloc_orDie(cBuffSize); in compress()
63 void* outSpace = malloc_orDie(outL); in createOutFilename_orDie()
H A Dcommon.h162 static void* malloc_orDie(size_t size) in malloc_orDie() function
207 void* const buffer = malloc_orDie(*bufferSize); in mallocAndLoadFile_orDie()
H A Dsimple_decompression.c30 void* const rBuff = malloc_orDie((size_t)rSize); in decompress()
H A Ddictionary_decompression.c43 void* const rBuff = malloc_orDie((size_t)rSize); in decompress()