Searched refs:in_buff (Results 1 – 1 of 1) sorted by relevance
/external/lz4/programs/ |
D | lz4io.c | 298 char* in_buff; in LZ4IO_compressFilename_Legacy() local 314 in_buff = (char*)malloc(LEGACY_BLOCKSIZE); in LZ4IO_compressFilename_Legacy() 316 if (!in_buff || !out_buff) EXM_THROW(21, "Allocation error : not enough memory"); in LZ4IO_compressFilename_Legacy() 328 int inSize = (int) fread(in_buff, (size_t)1, (size_t)LEGACY_BLOCKSIZE, finput); in LZ4IO_compressFilename_Legacy() 333 outSize = compressionFunction(in_buff, out_buff+4, inSize); in LZ4IO_compressFilename_Legacy() 354 free(in_buff); in LZ4IO_compressFilename_Legacy() 371 char* in_buff; in LZ4IO_compressFilename() local 399 in_buff = (char*)malloc(blockSize); in LZ4IO_compressFilename() 402 if (!in_buff || !out_buff) EXM_THROW(31, "Allocation error : not enough memory"); in LZ4IO_compressFilename() 412 readSize = fread(in_buff, (size_t)1, (size_t)blockSize, finput); in LZ4IO_compressFilename() [all …]
|