public abstract class MemoryManager
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static long |
MEM_MAX |
Constructor and Description |
---|
MemoryManager() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
arrayCopyOf(byte[] orig,
int sz) |
static double[] |
arrayCopyOf(double[] orig,
int sz) |
static int[] |
arrayCopyOf(int[] orig,
int sz) |
static long[] |
arrayCopyOf(long[] orig,
int sz) |
static byte[] |
arrayCopyOfRange(byte[] orig,
int from,
int sz) |
static double[] |
arrayCopyOfRange(double[] orig,
int from,
int sz) |
static int[] |
arrayCopyOfRange(int[] orig,
int from,
int sz) |
static long[] |
arrayCopyOfRange(long[] orig,
int from,
int sz) |
static byte[] |
malloc1(int size) |
static byte[] |
malloc1(int size,
boolean force) |
static short[] |
malloc2(int size) |
static int[] |
malloc4(int size) |
static float[] |
malloc4f(int size) |
static long[] |
malloc8(int size) |
static double[] |
malloc8d(int size) |
static double[][] |
malloc8d(int m,
int n) |
static java.lang.Object[] |
mallocObj(int size) |
static boolean[] |
mallocZ(int size) |
public static byte[] malloc1(int size)
public static byte[] malloc1(int size, boolean force)
public static short[] malloc2(int size)
public static int[] malloc4(int size)
public static long[] malloc8(int size)
public static float[] malloc4f(int size)
public static double[] malloc8d(int size)
public static double[][] malloc8d(int m, int n)
public static boolean[] mallocZ(int size)
public static java.lang.Object[] mallocObj(int size)
public static byte[] arrayCopyOfRange(byte[] orig, int from, int sz)
public static int[] arrayCopyOfRange(int[] orig, int from, int sz)
public static long[] arrayCopyOfRange(long[] orig, int from, int sz)
public static double[] arrayCopyOfRange(double[] orig, int from, int sz)
public static byte[] arrayCopyOf(byte[] orig, int sz)
public static int[] arrayCopyOf(int[] orig, int sz)
public static long[] arrayCopyOf(long[] orig, int sz)
public static double[] arrayCopyOf(double[] orig, int sz)