Lines Matching defs:yoff

1066      * @param yoff
1071 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1079 if(yoff < 0) {
1096 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1452 private void validate2DRange(int xoff, int yoff, int w, int h) {
1457 if (xoff < 0 || yoff < 0) {
1463 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1469 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array,
1474 validate2DRange(xoff, yoff, w, h);
1490 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
1519 * @param yoff Y offset of the region to update in this Allocation
1524 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) {
1527 copy2DRangeFromUnchecked(xoff, yoff, w, h, array,
1557 * @param yoff Y offset of the region to update in this Allocation
1562 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) {
1564 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1590 * @param yoff Y offset of the region to update in this Allocation
1595 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) {
1597 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1623 * @param yoff Y offset of the region to update in this Allocation
1628 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) {
1630 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1656 * @param yoff Y offset of the region to update in this Allocation
1661 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) {
1663 copy2DRangeFromUnchecked(xoff, yoff, w, h, data,
1672 * @param yoff Y offset of the region in this Allocation
1679 public void copy2DRangeFrom(int xoff, int yoff, int w, int h,
1684 validate2DRange(xoff, yoff, w, h);
1685 mRS.nAllocationData2D(getIDSafe(), xoff, yoff,
1700 * @param yoff Y offset of the region to update in this Allocation
1703 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) {
1711 copy2DRangeFrom(xoff, yoff, newBitmap);
1715 validate2DRange(xoff, yoff, data.getWidth(), data.getHeight());
1716 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data);
1722 private void validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) {
1727 if (xoff < 0 || yoff < 0 || zoff < 0) {
1733 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY) || ((zoff + d) > mCurrentDimZ)) {
1746 private void copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
1751 validate3DRange(xoff, yoff, zoff, w, h, d);
1767 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
1796 * @param yoff Y offset of the region to update in this Allocation
1803 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
1806 copy3DRangeFromUnchecked(xoff, yoff, zoff, w, h, d, array,
1819 * @param yoff Y offset of the region to update in this Allocation
1829 public void copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d,
1832 validate3DRange(xoff, yoff, zoff, w, h, d);
1833 mRS.nAllocationData3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
2023 * @param yoff
2028 public void copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
2036 if(yoff < 0) {
2053 mRS.nAllocationElementRead(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
2388 void copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array,
2393 validate2DRange(xoff, yoff, w, h);
2409 mRS.nAllocationRead2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, w, h,
2437 * @param yoff Y offset of the region to copy in this Allocation
2442 public void copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) {
2443 copy2DRangeToUnchecked(xoff, yoff, w, h, array,
2469 * @param yoff Y offset of the region to copy in this Allocation
2474 public void copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) {
2476 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2501 * @param yoff Y offset of the region to copy in this Allocation
2506 public void copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) {
2508 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2533 * @param yoff Y offset of the region to copy in this Allocation
2538 public void copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) {
2540 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2565 * @param yoff Y offset of the region to copy in this Allocation
2570 public void copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) {
2572 copy2DRangeToUnchecked(xoff, yoff, w, h, data,
2585 private void copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d,
2590 validate3DRange(xoff, yoff, zoff, w, h, d);
2606 mRS.nAllocationRead3D(getIDSafe(), xoff, yoff, zoff, mSelectedLOD, w, h, d,
2634 * @param yoff Y offset of the region to copy in this Allocation
2641 public void copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) {
2642 copy3DRangeToUnchecked(xoff, yoff, zoff, w, h, d, array,