Lines Matching refs:xoff

742      * @param xoff
745 public void setFromFieldPacker(int xoff, FieldPacker fp) {
756 copy1DRangeFromUnchecked(xoff, count, data);
763 * @param xoff
767 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) {
772 if(xoff < 0) {
786 mRS.nAllocationElementData1D(getIDSafe(), xoff, mSelectedLOD,
795 * @param xoff
802 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
807 if(xoff < 0) {
827 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1032 private void validate2DRange(int xoff, int yoff, int w, int h) {
1037 if (xoff < 0 || yoff < 0) {
1043 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1049 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array,
1052 validate2DRange(xoff, yoff, w, h);
1068 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1077 * @param xoff X offset of the region to update in this Allocation
1083 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) {
1084 copy2DRangeFromUnchecked(xoff, yoff, w, h, array,
1093 * @param xoff X offset of the region to update in this Allocation
1099 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
1101 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1109 * @param xoff X offset of the region to update in this Allocation
1115 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
1117 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1125 * @param xoff X offset of the region to update in this Allocation
1131 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
1133 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1141 * @param xoff X offset of the region to update in this Allocation
1147 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
1149 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1157 * @param xoff X offset of the region in this Allocation
1165 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
1168 validate2DRange(xoff, yoff, w, h);
1169 mRS.nAllocationData2D(getIDSafe(), xoff, yoff,
1180 * @param xoff X offset of the region to update in this Allocation
1184 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) {
1190 copy2DRangeFrom(xoff, yoff, newBitmap);
1194 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1195 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data);
1198 private void validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) {
1203 if (xoff < 0 || yoff < 0 || zoff < 0) {
1209 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
1216 private void copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1219 validate3DRange(xoff, yoff, zoff, w, h, d);
1235 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1244 * @param xoff X offset of the region to update in this Allocation
1252 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1253 copy3DRangeFromUnchecked(xoff, yoff, zoff, w, h, d, array,
1262 * @param xoff X offset of the region to update in this Allocation
1273 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d,
1276 validate3DRange(xoff, yoff, zoff, w, h, d);
1277 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1382 * @param xoff
1389 public void copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1394 if(xoff < 0) {
1414 mRS.nAllocationElementRead(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1567 void copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array,
1570 validate2DRange(xoff, yoff, w, h);
1586 mRS.nAllocationRead2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1593 * @param xoff X offset of the region to copy in this Allocation
1599 public void copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) {
1600 copy2DRangeToUnchecked(xoff, yoff, w, h, array,
1608 * @param xoff X offset of the region to copy in this Allocation
1614 public void copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) {
1616 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1623 * @param xoff X offset of the region to copy in this Allocation
1629 public void copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) {
1631 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1638 * @param xoff X offset of the region to copy in this Allocation
1644 public void copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) {
1646 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1653 * @param xoff X offset of the region to copy in this Allocation
1659 public void copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) {
1661 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
1671 private void copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1674 validate3DRange(xoff, yoff, zoff, w, h, d);
1690 mRS.nAllocationRead3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1699 * @param xoff X offset of the region to copy in this Allocation
1708 public void copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1709 copy3DRangeToUnchecked(xoff, yoff, zoff, w, h, d, array,