Home | History | Annotate | Download | only in renderscript

Lines Matching refs:zoff

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,
1208 * @param zoff Z 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,
1229 * @param zoff Z 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,