Searched defs:xoff (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java42 public void subData(int xoff, FieldPacker fp) { argument
43 super.setFromFieldPacker(xoff, fp);
48 public void subElementData(int xoff, int component_number, FieldPacker fp) { argument
49 super.setFromFieldPacker(xoff, component_number, fp);
78 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { argument
79 super.copy2DRangeFrom(xoff, yoff, w, h, d);
84 public void subData2D(int xoff, int yoff, int w, int h, float[] d) { argument
85 super.copy2DRangeFrom(xoff, yoff, w, h, d);
H A DAllocation.java676 * @param xoff
679 public void setFromFieldPacker(int xoff, FieldPacker fp) { argument
689 copy1DRangeFromUnchecked(xoff, count, data);
696 * @param xoff
700 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) { argument
705 if(xoff < 0) {
718 mRS.nAllocationElementData1D(getIDSafe(), xoff, mSelectedLOD,
878 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
883 if (xoff < 0 || yoff < 0) {
889 if (((xoff
895 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) argument
902 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) argument
909 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, int[] data) argument
916 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, float[] data) argument
934 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
949 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
964 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
979 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
996 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1015 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1029 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1050 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1061 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1072 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1083 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1104 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1113 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1122 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1131 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1152 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
[all...]
H A DRenderScript.java387 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes); argument
388 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) { argument
390 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
413 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); argument
414 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { argument
416 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
418 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); argument
419 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { argument
421 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
423 native void rsnAllocationData2D(int con, int id, int xoff, in argument
424 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
428 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
429 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
433 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
434 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
457 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
458 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
462 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
463 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
467 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
468 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
472 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
473 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp216 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) { argument
220 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
226 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
228 validate2DRange(xoff, yoff, w, h);
229 rsAllocation2DData(mRS->getContext(), getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace,
233 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
235 validate2DRange(xoff, yoff, w, h);
236 rsAllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
242 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
244 validate2DRange(xoff, yof
249 copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, size_t stride) argument
260 copy2DStridedTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, void *data, size_t stride) argument
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java132 public void setFromFieldPacker(int xoff, FieldPacker fp) { argument
135 mN.setFromFieldPacker(xoff, nfp);
137 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) { argument
140 mN.setFromFieldPacker(xoff, component_number, nfp);
178 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { argument
179 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
181 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { argument
182 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
184 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) { argument
185 mN.copy2DRangeFrom(xoff, yof
187 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
191 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
196 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
[all...]
H A DAllocation.java618 * @param xoff
621 public void setFromFieldPacker(int xoff, FieldPacker fp) { argument
631 copy1DRangeFromUnchecked(xoff, count, data);
638 * @param xoff
642 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) { argument
647 if(xoff < 0) {
660 mRS.nAllocationElementData1D(getIDSafe(), xoff, mSelectedLOD,
820 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
825 if (xoff < 0 || yoff < 0) {
831 if (((xoff
837 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) argument
844 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) argument
851 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, int[] data) argument
858 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, float[] data) argument
876 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
891 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
906 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
921 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
938 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
957 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
971 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
992 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1003 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1014 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1025 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1046 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1055 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1064 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1073 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1094 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
[all...]
H A DRenderScript.java310 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes); argument
311 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) { argument
313 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
336 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); argument
337 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { argument
339 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
341 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); argument
342 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { argument
344 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
346 native void rsnAllocationData2D(int con, int id, int xoff, in argument
347 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
351 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
352 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
356 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
357 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
380 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
381 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
385 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
386 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
390 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
391 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
395 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
396 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java879 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
884 registerForScrollChanged(anchor, xoff, yoff);
892 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff));
1108 int xoff, int yoff) {
1112 p.x = mDrawingLocation[0] + xoff;
1134 Rect r = new Rect(scrollX, scrollY, scrollX + mPopupWidth + xoff,
1142 p.x = mDrawingLocation[0] + xoff;
1452 * @param xoff x offset from the view's left edge
1457 public void update(View anchor, int xoff, int yoff, int width, int height) { argument
1458 update(anchor, true, xoff, yof
1107 findDropDownPosition(View anchor, WindowManager.LayoutParams p, int xoff, int yoff) argument
1461 update(View anchor, boolean updateLocation, int xoff, int yoff, boolean updateDimension, int width, int height) argument
1528 registerForScrollChanged(View anchor, int xoff, int yoff) argument
[all...]
/frameworks/rs/driver/
H A DrsdAllocation.cpp93 uint32_t xoff, uint32_t yoff, uint32_t zoff,
99 ptr += xoff * alloc->mHal.state.elementSizeBytes;
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
117 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
828 uint32_t xoff, uint32_t lod, size_t count,
833 uint8_t * ptr = GetOffsetPtr(alloc, xoff, 0, 0, 0, RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X);
849 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
861 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
882 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
895 Update2DTexture(rsc, alloc, data, xoff, yof
92 GetOffsetPtr(const android::renderscript::Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
104 Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h) argument
827 rsdAllocationData1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, const void *data, size_t sizeBytes) argument
848 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
899 rsdAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
938 rsdAllocationRead1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, void *data, size_t sizeBytes) argument
950 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
979 rsdAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp90 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod, argument
101 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
105 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
107 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
111 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
114 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
118 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod, argument
129 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
132 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
146 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yof
149 read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
499 rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
517 rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
523 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
677 rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
683 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp479 // native void rsnAllocationElementData1D(int con, int id, int xoff, int compIdx, byte[] d, int sizeBytes);
490 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
494 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
496 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
501 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
505 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
507 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
512 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jin argument
523 nAllocationData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jfloatArray data, int sizeBytes) argument
558 nAllocationData3D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jshortArray data, int sizeBytes) argument
569 nAllocationData3D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jbyteArray data, int sizeBytes) argument
580 nAllocationData3D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jintArray data, int sizeBytes) argument
591 nAllocationData3D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jfloatArray data, int sizeBytes) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp649 // native void rsnAllocationElementData1D(int con, int id, int xoff, int compIdx, byte[] d, int sizeBytes);
660 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
664 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
666 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
671 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
675 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
677 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
682 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jin argument
693 nAllocationData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jfloatArray data, int sizeBytes) argument
728 nAllocationData3D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jshortArray data, int sizeBytes) argument
739 nAllocationData3D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jbyteArray data, int sizeBytes) argument
750 nAllocationData3D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jintArray data, int sizeBytes) argument
761 nAllocationData3D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jfloatArray data, int sizeBytes) argument
[all...]

Completed in 1834 milliseconds