Lines Matching refs:xoff

773      * @param xoff
776 public void setFromFieldPacker(int xoff, FieldPacker fp) {
787 copy1DRangeFromUnchecked(xoff, count, data);
794 * @param xoff
798 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) {
803 if(xoff < 0) {
817 mRS.nAllocationElementData1D(getIDSafe(), xoff, mSelectedLOD,
1012 private void validate2DRange(int xoff, int yoff, int w, int h) {
1017 if (xoff < 0 || yoff < 0) {
1023 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1029 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array,
1033 validate2DRange(xoff, yoff, w, h);
1034 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1043 * @param xoff X offset of the region to update in this Allocation
1049 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) {
1051 copy2DRangeFromUnchecked(xoff, yoff, w, h, array,
1061 * @param xoff X offset of the region to update in this Allocation
1067 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
1069 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
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, short[] data) {
1085 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
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, int[] 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, float[] data) {
1117 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1125 * @param xoff X offset of the region in this Allocation
1133 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
1137 validate2DRange(xoff, yoff, w, h);
1138 mRS.nAllocationData2D(getIDSafe(), xoff, yoff,
1150 * @param xoff X offset of the region to update in this Allocation
1154 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) {
1161 copy2DRangeFrom(xoff, yoff, newBitmap);
1165 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1166 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data);
1170 private void validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) {
1175 if (xoff < 0 || yoff < 0 || zoff < 0) {
1181 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
1191 private void copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1195 validate3DRange(xoff, yoff, zoff, w, h, d);
1196 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1206 * @param xoff X offset of the region to update in this Allocation
1214 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1216 copy3DRangeFromUnchecked(xoff, yoff, zoff, w, h, d, array,
1227 * @param xoff X offset of the region to update in this Allocation
1238 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d,
1241 validate3DRange(xoff, yoff, zoff, w, h, d);
1242 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,