Lines Matching refs:data

33     /** The default data bank. */
34 IntBuffer data;
36 /** All data banks */
48 data = getBufferOfSize(size * 4).asIntBuffer();
50 bankdata[0] = data;
59 return data;
73 * Returns the default (first) int data array in <CODE>DataBuffer</CODE>.
75 * @return The first integer data array.
78 return data.array();
82 * Returns the data array for the specified bank.
84 * @param bank The bank whose data array you want to get.
85 * @return The data array for the specified bank.
92 * Returns the data arrays for all banks.
93 * @return All of the data arrays.
101 * Returns the requested data array element from the first (default) bank.
103 * @param i The data array element you want to get.
104 * @return The requested data array element as an integer.
109 return data.get(i+offset);
113 * Returns the requested data array element from the specified bank.
115 * @param bank The bank from which you want to get a data array element.
116 * @param i The data array element you want to get.
117 * @return The requested data array element as an integer.
126 * Sets the requested data array element in the first (default) bank
129 * @param i The data array element you want to set.
130 * @param val The integer value to which you want to set the data array element.
135 data.put(i+offset, val);
139 * Sets the requested data array element in the specified bank
141 * @param bank The bank in which you want to set the data array element.
142 * @param i The data array element you want to set.
143 * @param val The integer value to which you want to set the specified data array element.