Метод | Описание | |
---|---|---|
CanBeUnCompressed ( |
Checks weather the data can be uncompressed.
|
|
CanBeUnCompressed ( |
Checks if data can be uncompressed.
|
|
CanBeUnCompressed ( byte source, int maxLenght ) : bool |
Checks if data can be uncompressed
|
|
CanBeUnCompressed ( byte source, int minSize, int maxSize ) : bool |
Checks if data can be uncompressed
|
|
CanBeUnCompressed ( byte data, int offset, int minSize, int maxSize ) : bool |
Checks if data can be uncompressed
|
|
CanBeUnCompressed ( int offset, |
Checks weather the data can be uncompressed.
|
|
Compress ( |
||
Compress ( byte unCompressedData ) : byte[] | ||
Compress ( byte source, int lenght ) : byte[] |
Compresses data with LZ77
|
|
Compress ( byte data, int index, int length ) : byte[] |
Compresses data with LZ77
|
|
Compress ( uint UncompressedData ) : byte[] |
Compresses from UInt32 to byte
|
|
Decompress ( |
Decompresses LZ77 data
|
|
Decompress ( byte source, byte target ) : bool |
Decompresses LZ77 data
|
|
Decompress ( |
Decompresses LZ77 data
|
|
Decompress ( byte source ) : byte[] |
Decompresses LZ77 data
|
|
Decompress ( byte data, int offset ) : byte[] |
Decompresses LZ77 data
|
|
GetCompressedDataLenght ( |
Gets the lenght of the compressed data in a stream
|
|
GetCompressedDataLenght ( byte source, int &lenght ) : bool |
Gets the lenght of the compressed data
|
|
GetCompressedDataLenght ( |
Gets the lenght of the compressed data
|
|
GetCompressedDataLenght ( byte source ) : int |
Gets the lenght of the compressed data
|
|
GetCompressedDataLenght ( byte data, int offset ) : int |
Gets the lenght of the compressed data
|
|
Scan ( |
||
Scan ( |
Scans the stream for potential LZ77 compressions
|
|
Scan ( |
Scans the stream for potential LZ77 compressions
|
|
Scan ( byte pointer, int amount ) : int[] |
Scans an area in memory for potentian LZ77 compressions
|
|
Scan ( byte pointer, int amount, int sizeMultible, int minSize, int maxSize ) : int[] |
Scans an area in memory for potential LZ77 compressions
|
|
Scan ( byte data, int offset, int amount, int sizeMultible, int minSize, int maxSize ) : int[] |
Scans the data for potential LZ77 compressions
|
|
UnCompress ( |
Uncompresser LZ77 data from a stream
|
|
UnCompress ( byte source, byte target ) : bool |
Uncompresser LZ77 data
|
|
UnCompress ( |
||
UnCompress ( byte CompressedData ) : byte[] | ||
UnCompressToUInt32 ( |
Uncompresses to Uint32
|
Метод | Описание | |
---|---|---|
Search ( List |
||
Search ( byte source, int position, int lenght ) : int[] |
public static CanBeUnCompressed ( |
||
br | Stream where the compressed data is. | |
offset | int | Offset of the compressed data in the stream. |
Результат | bool |
public static CanBeUnCompressed ( |
||
br | Stream where the compressed data is | |
offset | int | Offset of the compressed data in the stream |
minSize | int | |
maxSize | int | |
Результат | bool |
public static CanBeUnCompressed ( byte source, int maxLenght ) : bool | ||
source | byte | Pointer to beginning of data |
maxLenght | int | |
Результат | bool |
public static CanBeUnCompressed ( byte source, int minSize, int maxSize ) : bool | ||
source | byte | Pointer to beginning of data |
minSize | int | |
maxSize | int | |
Результат | bool |
public static CanBeUnCompressed ( byte data, int offset, int minSize, int maxSize ) : bool | ||
data | byte | Data with data to test |
offset | int | Offset of the data to test in data |
minSize | int | |
maxSize | int | |
Результат | bool |
public static CanBeUnCompressed ( int offset, |
||
offset | int | Offset of the compressed data in the stream. |
br | Stream where the compressed data is. | |
Результат | bool |
public Compress ( |
||
br | ||
offset | int | |
size | int | |
Результат | byte[] |
public Compress ( byte unCompressedData ) : byte[] | ||
unCompressedData | byte | |
Результат | byte[] |
public static Compress ( byte source, int lenght ) : byte[] | ||
source | byte | Pointer to beginning of the data |
lenght | int | Lenght of the data to compress in bytes |
Результат | byte[] |
public static Compress ( byte data, int index, int length ) : byte[] | ||
data | byte | Data to compress |
index | int | Beginning offset of the data to compress |
length | int | Length of the data to compress |
Результат | byte[] |
public static Compress ( uint UncompressedData ) : byte[] | ||
UncompressedData | uint | Array of uncompressed data |
Результат | byte[] |
public static Decompress ( |
||
br | Stream where the compressed data is | |
offset | int | Position of the compressed data |
destination | byte | Pointer to where uncompressed data goes |
Результат | bool |
public static Decompress ( byte source, byte target ) : bool | ||
source | byte | Pointer to compressed data |
target | byte | Pointer to where uncompressed data goes |
Результат | bool |
public static Decompress ( |
||
br | Stream where compressed data is | |
offset | int | Offset of the compressed data in the stream |
Результат | byte[] |
public static Decompress ( byte source ) : byte[] | ||
source | byte | Pointer to data to decompress |
Результат | byte[] |
public static Decompress ( byte data, int offset ) : byte[] | ||
data | byte | Data where compressed data is |
offset | int | Offset of the compressed data |
Результат | byte[] |
public static GetCompressedDataLenght ( |
||
br | The stream with data | |
offset | int | The position of the data in stream |
lenght | int | |
Результат | bool |
public static GetCompressedDataLenght ( byte source, int &lenght ) : bool | ||
source | byte | Pointer to the data |
lenght | int | Lenght of the compressed data |
Результат | bool |
public static GetCompressedDataLenght ( |
||
br | The stream with data | |
offset | int | The position of the data in stream |
Результат | int |
public static GetCompressedDataLenght ( byte source ) : int | ||
source | byte | Pointer to the data to check |
Результат | int |
public static GetCompressedDataLenght ( byte data, int offset ) : int | ||
data | byte | Data where compressed data is |
offset | int | The position of the data |
Результат | int |
public Scan ( |
||
br | ||
Результат | int[] |
public static Scan ( |
||
br | Stream to scan. | |
offset | int | |
size | int | |
Результат | int[] |
public static Scan ( |
||
br | Stream to scan | |
offset | int | |
amount | int | |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
Результат | int[] |
public static Scan ( byte pointer, int amount ) : int[] | ||
pointer | byte | Pointer to start of area to scan |
amount | int | Size of the area to scan in bytes |
Результат | int[] |
public static Scan ( byte pointer, int amount, int sizeMultible, int minSize, int maxSize ) : int[] | ||
pointer | byte | Pointer to start of area to scan |
amount | int | Size of the area to scan in bytes |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
Результат | int[] |
public static Scan ( byte data, int offset, int amount, int sizeMultible, int minSize, int maxSize ) : int[] | ||
data | byte | Data to scan |
offset | int | Starting offset of are to scan |
amount | int | Size of the area to scan |
sizeMultible | int | |
minSize | int | |
maxSize | int | |
Результат | int[] |
public static UnCompress ( |
||
br | Stream where the compressed data is | |
offset | int | Position of the compressed data |
destination | byte | Pointer to where uncompressed data goes |
Результат | bool |
public static UnCompress ( byte source, byte target ) : bool | ||
source | byte | Pointer to compressed data |
target | byte | Pointer to where uncompressed data goes |
Результат | bool |
public UnCompress ( |
||
br | ||
offset | int | |
Результат | byte[] |
public UnCompress ( byte CompressedData ) : byte[] | ||
CompressedData | byte | |
Результат | byte[] |
public static UnCompressToUInt32 ( |
||
br | Stream where the data to uncompress is | |
offset | int | Offset of the data |
Результат | uint[] |