Lines Matching refs:size

68      * specified size.
70 * @param size The size of the <CODE>DataBuffer</CODE>.
72 public DataBufferShort(int size) {
73 super(STABLE, TYPE_SHORT,size);
74 data = new short[size];
81 * banks all of which are the specified size.
83 * @param size The size of the banks in the <CODE>DataBuffer</CODE>.
86 public DataBufferShort(int size, int numBanks) {
87 super(STABLE, TYPE_SHORT,size,numBanks);
90 bankdata[i] = new short[size];
98 * Only the first <CODE>size</CODE> elements should be used by accessors of
100 * hold <CODE>size</CODE> elements.
108 * @param size The size of the <CODE>DataBuffer</CODE> bank.
110 public DataBufferShort(short dataArray[], int size) {
111 super(UNTRACKABLE, TYPE_SHORT, size);
119 * specified array, size, and offset. <CODE>dataArray</CODE> must have at least
120 * <CODE>offset</CODE> + <CODE>size</CODE> elements. Only elements <CODE>offset</CODE>
121 * through <CODE>offset</CODE> + <CODE>size</CODE> - 1
130 * @param size The size of the <CODE>DataBuffer</CODE> bank.
133 public DataBufferShort(short dataArray[], int size, int offset) {
134 super(UNTRACKABLE, TYPE_SHORT, size, 1, offset);
143 * Only the first <CODE>size</CODE> elements of each array should be used by
152 * @param size The size of the banks in the <CODE>DataBuffer</CODE>.
154 public DataBufferShort(short dataArray[][], int size) {
155 super(UNTRACKABLE, TYPE_SHORT, size, dataArray.length);
161 * Constructs a short-based <CODE>DataBuffer</CODE> with the specified arrays, size,
164 * be at least as large as <CODE>size</CODE> + the corresponding offset. There must
167 * <CODE>offset</CODE> + <CODE>size</CODE> - 1 should be
176 * @param size The size of the banks in the <CODE>DataBuffer</CODE>.
179 public DataBufferShort(short dataArray[][], int size, int offsets[]) {
180 super(UNTRACKABLE, TYPE_SHORT, size, dataArray.length, offsets);