Lines Matching refs:stream
1034 LZ4_stream_t* stream = LZ4_createStream(); in LZ4_Compress() local
1037 LZ4_loadDict(stream, compression_dict.data(), in LZ4_Compress()
1042 LZ4_compress_fast_continue(stream, input, &(*output)[output_header_len], in LZ4_Compress()
1046 stream, input, &(*output)[output_header_len], static_cast<int>(length), in LZ4_Compress()
1049 LZ4_freeStream(stream); in LZ4_Compress()
1103 LZ4_streamDecode_t* stream = LZ4_createStreamDecode(); variable
1106 LZ4_setStreamDecode(stream, compression_dict.data(),
1110 stream, input_data, output.get(), static_cast<int>(input_length),
1112 LZ4_freeStreamDecode(stream);
1174 LZ4_streamHC_t* stream = LZ4_createStreamHC(); in LZ4HC_Compress() local
1175 LZ4_resetStreamHC(stream, level); in LZ4HC_Compress()
1180 LZ4_loadDictHC(stream, compression_dict_data, in LZ4HC_Compress()
1185 LZ4_compress_HC_continue(stream, input, &(*output)[output_header_len], in LZ4HC_Compress()
1189 stream, input, &(*output)[output_header_len], static_cast<int>(length), in LZ4HC_Compress()
1192 LZ4_freeStreamHC(stream); in LZ4HC_Compress()