Lines Matching defs:yoff

1046      * @param yoff
1052 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1060 if(yoff < 0) {
1077 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1427 private void validate2DRange(int xoff, int yoff, int w, int h) {
1432 if (xoff < 0 || yoff < 0) {
1438 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1444 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array,
1447 validate2DRange(xoff, yoff, w, h);
1463 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1489 * @param yoff Y offset of the region to update in this Allocation
1494 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) {
1495 copy2DRangeFromUnchecked(xoff, yoff, w, h, array,
1522 * @param yoff Y offset of the region to update in this Allocation
1527 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
1529 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1555 * @param yoff Y offset of the region to update in this Allocation
1560 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
1562 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1588 * @param yoff Y offset of the region to update in this Allocation
1593 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
1595 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1621 * @param yoff Y offset of the region to update in this Allocation
1626 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
1628 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1637 * @param yoff Y offset of the region in this Allocation
1644 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
1647 validate2DRange(xoff, yoff, w, h);
1648 mRS.nAllocationData2D(getIDSafe(), xoff, yoff,
1660 * @param yoff Y offset of the region to update in this Allocation
1663 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) {
1669 copy2DRangeFrom(xoff, yoff, newBitmap);
1673 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1674 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data);
1677 private void validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) {
1682 if (xoff < 0 || yoff < 0 || zoff < 0) {
1688 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
1701 private void copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1704 validate3DRange(xoff, yoff, zoff, w, h, d);
1720 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1746 * @param yoff Y offset of the region to update in this Allocation
1753 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1754 copy3DRangeFromUnchecked(xoff, yoff, zoff, w, h, d, array,
1764 * @param yoff Y offset of the region to update in this Allocation
1774 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d,
1777 validate3DRange(xoff, yoff, zoff, w, h, d);
1778 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1957 * @param yoff
1963 public void copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1971 if(yoff < 0) {
1988 mRS.nAllocationElementRead(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
2286 void copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array,
2289 validate2DRange(xoff, yoff, w, h);
2305 mRS.nAllocationRead2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
2330 * @param yoff Y offset of the region to copy in this Allocation
2335 public void copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) {
2336 copy2DRangeToUnchecked(xoff, yoff, w, h, array,
2362 * @param yoff Y offset of the region to copy in this Allocation
2367 public void copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) {
2369 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2394 * @param yoff Y offset of the region to copy in this Allocation
2399 public void copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) {
2401 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2426 * @param yoff Y offset of the region to copy in this Allocation
2431 public void copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) {
2433 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2458 * @param yoff Y offset of the region to copy in this Allocation
2463 public void copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) {
2465 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2479 private void copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
2482 validate3DRange(xoff, yoff, zoff, w, h, d);
2498 mRS.nAllocationRead3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
2525 * @param yoff Y offset of the region to copy in this Allocation
2533 public void copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
2534 copy3DRangeToUnchecked(xoff, yoff, zoff, w, h, d, array,