Method | Description | |
---|---|---|
memcpy ( byte dest, byte src, uint count ) : void |
Copies bytes between buffers.
|
|
memset ( byte dest, byte c, uint count ) : void |
Sets buffers to a specified character.
|
|
realloc ( byte memblock, uint size, uint newsize ) : byte* |
Reallocate memory blocks.
|
public static memcpy ( byte dest, byte src, uint count ) : void | ||
dest | byte | New buffer. |
src | byte | Buffer to copy from. |
count | uint | |
return | void |
public static memset ( byte dest, byte c, uint count ) : void | ||
dest | byte | Pointer to destination. |
c | byte | Character to set. |
count | uint | Number of characters. |
return | void |
public static realloc ( byte memblock, uint size, uint newsize ) : byte* | ||
memblock | byte | Pointer to previously allocated memory block. |
size | uint | Previously allocated memory block size. |
newsize | uint | New size in bytes. |
return | byte* |