C# Class ThemeEditor.Common.Compression.LZUtil

Class for I/O-related utility methods.
Datei anzeigen Open project: usagirei/3DS-Theme-Editor Class Usage Examples

Private Methods

Method Description
GetOccurrenceLength ( byte newPtr, int newLength, byte oldPtr, int oldLength, int &disp, int minDisp = 1 ) : int

Determine the maximum size of a LZ-compressed block starting at newPtr, using the already compressed data starting at oldPtr. Takes O(inLength * oldLength) = O(n^2) time.