Lines Matching full:acceleration
123 const int acceleration = 1;
145 rv = LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration);
152 LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration);
158 rv = LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration);
165 LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration);
174 // //rv = LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration);
175 // LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, acceleration);
183 // //LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration);
184 // LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, acceleration);
273 // Using this function is identical to LZ4_compress_default except we need to specify an "acceleration" value. Defaults to 1.