Searched refs:outSpace (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/contrib/zstd/examples/ |
H A D | simple_compression.c | 44 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 45 memset(outSpace, 0, outL); in createOutFilename_orDie() 46 strcat(outSpace, filename); in createOutFilename_orDie() 47 strcat(outSpace, ".zst"); in createOutFilename_orDie() 48 return (char*)outSpace; in createOutFilename_orDie()
|
H A D | dictionary_compression.c | 63 void* outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 64 memset(outSpace, 0, outL); in createOutFilename_orDie() 65 strcat(outSpace, filename); in createOutFilename_orDie() 66 strcat(outSpace, ".zst"); in createOutFilename_orDie() 67 return (char*)outSpace; in createOutFilename_orDie()
|
H A D | streaming_compression.c | 101 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 102 memset(outSpace, 0, outL); in createOutFilename_orDie() 103 strcat(outSpace, filename); in createOutFilename_orDie() 104 strcat(outSpace, ".zst"); in createOutFilename_orDie() 105 return (char*)outSpace; in createOutFilename_orDie()
|
H A D | streaming_compression_thread_pool.c | 122 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 123 memset(outSpace, 0, outL); in createOutFilename_orDie() 124 strcat(outSpace, filename); in createOutFilename_orDie() 125 strcat(outSpace, ".zst"); in createOutFilename_orDie() 126 return (char*)outSpace; in createOutFilename_orDie()
|