Lines Matching refs:off

1082     private void data1DChecks(int off, int count, int len, int dataSize, boolean usePadding) {
1084 if(off < 0) {
1090 if((off + count) > mCurrentCount) {
1092 ", got " + count + " at offset " + off + ".");
1119 private void copy1DRangeFromUnchecked(int off, int count, Object array,
1127 data1DChecks(off, count, arrayLen * dt.mSize, dataSize, usePadding);
1128 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt,
1150 * @param off The offset of the first element to be copied.
1154 public void copy1DRangeFromUnchecked(int off, int count, Object array) {
1155 copy1DRangeFromUnchecked(off, count, array,
1178 * @param off The offset of the first element to be copied.
1182 public void copy1DRangeFromUnchecked(int off, int count, int[] d) {
1183 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length);
1204 * @param off The offset of the first element to be copied.
1208 public void copy1DRangeFromUnchecked(int off, int count, short[] d) {
1209 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length);
1230 * @param off The offset of the first element to be copied.
1234 public void copy1DRangeFromUnchecked(int off, int count, byte[] d) {
1235 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length);
1256 * @param off The offset of the first element to be copied.
1260 public void copy1DRangeFromUnchecked(int off, int count, float[] d) {
1261 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.FLOAT_32, d.length);
1285 * @param off The offset of the first element to be copied.
1289 public void copy1DRangeFrom(int off, int count, Object array) {
1290 copy1DRangeFromUnchecked(off, count, array,
1315 * @param off The offset of the first element to be copied.
1319 public void copy1DRangeFrom(int off, int count, int[] d) {
1321 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_32, d.length);
1344 * @param off The offset of the first element to be copied.
1348 public void copy1DRangeFrom(int off, int count, short[] d) {
1350 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_16, d.length);
1373 * @param off The offset of the first element to be copied.
1377 public void copy1DRangeFrom(int off, int count, byte[] d) {
1379 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_8, d.length);
1402 * @param off The offset of the first element to be copied.
1406 public void copy1DRangeFrom(int off, int count, float[] d) {
1408 copy1DRangeFromUnchecked(off, count, d, Element.DataType.FLOAT_32, d.length);
1414 * @param off The offset of the first element to be copied.
1417 * @param dataOff off The offset of the first element in data to
1420 public void copy1DRangeFrom(int off, int count, Allocation data, int dataOff) {
1421 mRS.nAllocationData2D(getIDSafe(), off, 0,
1993 private void copy1DRangeToUnchecked(int off, int count, Object array,
2001 data1DChecks(off, count, arrayLen * dt.mSize, dataSize, usePadding);
2002 mRS.nAllocationRead1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt,
2024 * @param off The offset of the first element to be copied.
2028 public void copy1DRangeToUnchecked(int off, int count, Object array) {
2029 copy1DRangeToUnchecked(off, count, array,
2052 * @param off The offset of the first element to be copied.
2056 public void copy1DRangeToUnchecked(int off, int count, int[] d) {
2057 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length);
2078 * @param off The offset of the first element to be copied.
2082 public void copy1DRangeToUnchecked(int off, int count, short[] d) {
2083 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length);
2104 * @param off The offset of the first element to be copied.
2108 public void copy1DRangeToUnchecked(int off, int count, byte[] d) {
2109 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length);
2130 * @param off The offset of the first element to be copied.
2134 public void copy1DRangeToUnchecked(int off, int count, float[] d) {
2135 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.FLOAT_32, d.length);
2159 * @param off The offset of the first element to be copied.
2163 public void copy1DRangeTo(int off, int count, Object array) {
2164 copy1DRangeToUnchecked(off, count, array,
2189 * @param off The offset of the first element to be copied.
2193 public void copy1DRangeTo(int off, int count, int[] d) {
2195 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_32, d.length);
2218 * @param off The offset of the first element to be copied.
2222 public void copy1DRangeTo(int off, int count, short[] d) {
2224 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_16, d.length);
2247 * @param off The offset of the first element to be copied.
2251 public void copy1DRangeTo(int off, int count, byte[] d) {
2253 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_8, d.length);
2276 * @param off The offset of the first element to be copied.
2280 public void copy1DRangeTo(int off, int count, float[] d) {
2282 copy1DRangeToUnchecked(off, count, d, Element.DataType.FLOAT_32, d.length);