Lines Matching refs:xoff

813      * @param xoff
816 public void setFromFieldPacker(int xoff, FieldPacker fp) {
827 copy1DRangeFromUnchecked(xoff, count, data);
835 * @param xoff
839 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) {
840 setFromFieldPacker(xoff, 0, 0, component_number, fp);
847 * @param xoff
853 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
858 if(xoff < 0) {
878 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1089 private void validate2DRange(int xoff, int yoff, int w, int h) {
1094 if (xoff < 0 || yoff < 0) {
1100 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1106 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array,
1111 validate2DRange(xoff, yoff, w, h);
1127 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1139 * @param xoff X offset of the region to update in this Allocation
1145 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) {
1148 copy2DRangeFromUnchecked(xoff, yoff, w, h, array,
1160 * @param xoff X offset of the region to update in this Allocation
1166 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
1168 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1176 * @param xoff X offset of the region to update in this Allocation
1182 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
1184 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1192 * @param xoff X offset of the region to update in this Allocation
1198 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
1200 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1208 * @param xoff X offset of the region to update in this Allocation
1214 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
1216 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1224 * @param xoff X offset of the region in this Allocation
1232 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
1237 validate2DRange(xoff, yoff, w, h);
1238 mRS.nAllocationData2D(getIDSafe(), xoff, yoff,
1252 * @param xoff X offset of the region to update in this Allocation
1256 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) {
1264 copy2DRangeFrom(xoff, yoff, newBitmap);
1268 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1269 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data);
1275 private void validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) {
1280 if (xoff < 0 || yoff < 0 || zoff < 0) {
1286 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
1299 private void copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1304 validate3DRange(xoff, yoff, zoff, w, h, d);
1320 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1332 * @param xoff X offset of the region to update in this Allocation
1340 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1343 copy3DRangeFromUnchecked(xoff, yoff, zoff, w, h, d, array,
1355 * @param xoff X offset of the region to update in this Allocation
1366 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d,
1369 validate3DRange(xoff, yoff, zoff, w, h, d);
1370 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1486 * @param xoff
1492 public void copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1497 if(xoff < 0) {
1517 mRS.nAllocationElementRead(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1705 void copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array,
1710 validate2DRange(xoff, yoff, w, h);
1726 mRS.nAllocationRead2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1736 * @param xoff X offset of the region to copy in this Allocation
1742 public void copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) {
1743 copy2DRangeToUnchecked(xoff, yoff, w, h, array,
1751 * @param xoff X offset of the region to copy in this Allocation
1757 public void copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) {
1759 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1766 * @param xoff X offset of the region to copy in this Allocation
1772 public void copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) {
1774 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1781 * @param xoff X offset of the region to copy in this Allocation
1787 public void copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) {
1789 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1796 * @param xoff X offset of the region to copy in this Allocation
1802 public void copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) {
1804 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1816 private void copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1821 validate3DRange(xoff, yoff, zoff, w, h, d);
1837 mRS.nAllocationRead3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1847 * @param xoff X offset of the region to copy in this Allocation
1855 public void copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1856 copy3DRangeToUnchecked(xoff, yoff, zoff, w, h, d, array,