Searched refs:outSpace (Results 1 – 6 of 6) sorted by relevance
/external/zstd/examples/ |
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()
|
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()
|
D | streaming_compression.c | 98 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 99 memset(outSpace, 0, outL); in createOutFilename_orDie() 100 strcat(outSpace, filename); in createOutFilename_orDie() 101 strcat(outSpace, ".zst"); in createOutFilename_orDie() 102 return (char*)outSpace; in createOutFilename_orDie()
|
D | streaming_compression_thread_pool.c | 120 void* const outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 121 memset(outSpace, 0, outL); in createOutFilename_orDie() 122 strcat(outSpace, filename); in createOutFilename_orDie() 123 strcat(outSpace, ".zst"); in createOutFilename_orDie() 124 return (char*)outSpace; in createOutFilename_orDie()
|
/external/zstd/contrib/seekable_format/examples/ |
D | seekable_compression.c | 108 void* outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 109 memset(outSpace, 0, outL); in createOutFilename_orDie() 110 strcat(outSpace, filename); in createOutFilename_orDie() 111 strcat(outSpace, ".zst"); in createOutFilename_orDie() 112 return (char*)outSpace; in createOutFilename_orDie()
|
D | parallel_compression.c | 190 void* outSpace = malloc_orDie(outL); in createOutFilename_orDie() local 191 memset(outSpace, 0, outL); in createOutFilename_orDie() 192 strcat(outSpace, filename); in createOutFilename_orDie() 193 strcat(outSpace, ".zst"); in createOutFilename_orDie() 194 return (const char*)outSpace; in createOutFilename_orDie()
|