Lines Matching refs:off

1100     private void data1DChecks(int off, int count, int len, int dataSize, boolean usePadding) {
1102 if(off < 0) {
1108 if((off + count) > mCurrentCount) {
1110 ", got " + count + " at offset " + off + ".");
1137 private void copy1DRangeFromUnchecked(int off, int count, Object array,
1147 data1DChecks(off, count, arrayLen * dt.mSize, dataSize, usePadding);
1148 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt,
1174 * @param off The offset of the first element to be copied.
1178 public void copy1DRangeFromUnchecked(int off, int count, Object array) {
1179 copy1DRangeFromUnchecked(off, count, array,
1202 * @param off The offset of the first element to be copied.
1206 public void copy1DRangeFromUnchecked(int off, int count, int[] d) {
1207 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length);
1228 * @param off The offset of the first element to be copied.
1232 public void copy1DRangeFromUnchecked(int off, int count, short[] d) {
1233 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length);
1254 * @param off The offset of the first element to be copied.
1258 public void copy1DRangeFromUnchecked(int off, int count, byte[] d) {
1259 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length);
1280 * @param off The offset of the first element to be copied.
1284 public void copy1DRangeFromUnchecked(int off, int count, float[] d) {
1285 copy1DRangeFromUnchecked(off, count, (Object)d, Element.DataType.FLOAT_32, d.length);
1308 * @param off The offset of the first element to be copied.
1312 public void copy1DRangeFrom(int off, int count, Object array) {
1313 copy1DRangeFromUnchecked(off, count, array,
1338 * @param off The offset of the first element to be copied.
1342 public void copy1DRangeFrom(int off, int count, int[] d) {
1344 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_32, d.length);
1367 * @param off The offset of the first element to be copied.
1371 public void copy1DRangeFrom(int off, int count, short[] d) {
1373 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_16, d.length);
1396 * @param off The offset of the first element to be copied.
1400 public void copy1DRangeFrom(int off, int count, byte[] d) {
1402 copy1DRangeFromUnchecked(off, count, d, Element.DataType.SIGNED_8, d.length);
1425 * @param off The offset of the first element to be copied.
1429 public void copy1DRangeFrom(int off, int count, float[] d) {
1431 copy1DRangeFromUnchecked(off, count, d, Element.DataType.FLOAT_32, d.length);
1437 * @param off The offset of the first element to be copied.
1440 * @param dataOff off The offset of the first element in data to
1443 public void copy1DRangeFrom(int off, int count, Allocation data, int dataOff) {
1445 mRS.nAllocationData2D(getIDSafe(), off, 0,
2091 private void copy1DRangeToUnchecked(int off, int count, Object array,
2101 data1DChecks(off, count, arrayLen * dt.mSize, dataSize, usePadding);
2102 mRS.nAllocationRead1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt,
2127 * @param off The offset of the first element to be copied.
2131 public void copy1DRangeToUnchecked(int off, int count, Object array) {
2132 copy1DRangeToUnchecked(off, count, array,
2155 * @param off The offset of the first element to be copied.
2159 public void copy1DRangeToUnchecked(int off, int count, int[] d) {
2160 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length);
2181 * @param off The offset of the first element to be copied.
2185 public void copy1DRangeToUnchecked(int off, int count, short[] d) {
2186 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length);
2207 * @param off The offset of the first element to be copied.
2211 public void copy1DRangeToUnchecked(int off, int count, byte[] d) {
2212 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length);
2233 * @param off The offset of the first element to be copied.
2237 public void copy1DRangeToUnchecked(int off, int count, float[] d) {
2238 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.FLOAT_32, d.length);
2261 * @param off The offset of the first element to be copied.
2265 public void copy1DRangeTo(int off, int count, Object array) {
2266 copy1DRangeToUnchecked(off, count, array,
2291 * @param off The offset of the first element to be copied.
2295 public void copy1DRangeTo(int off, int count, int[] d) {
2297 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_32, d.length);
2320 * @param off The offset of the first element to be copied.
2324 public void copy1DRangeTo(int off, int count, short[] d) {
2326 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_16, d.length);
2349 * @param off The offset of the first element to be copied.
2353 public void copy1DRangeTo(int off, int count, byte[] d) {
2355 copy1DRangeToUnchecked(off, count, d, Element.DataType.SIGNED_8, d.length);
2378 * @param off The offset of the first element to be copied.
2382 public void copy1DRangeTo(int off, int count, float[] d) {
2384 copy1DRangeToUnchecked(off, count, d, Element.DataType.FLOAT_32, d.length);