Searched refs:lod (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/rs/driver/
H A DrsdAllocation.cpp94 uint32_t lod, RsAllocationCubemapFace face) {
95 uint8_t *ptr = (uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
97 ptr += zoff * alloc->mHal.drvState.lod[lod].dimY * alloc->mHal.drvState.lod[lod].stride;
98 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
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
778 rsdAllocationData1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, const void *data, size_t sizeBytes) argument
798 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
830 int lod = 1; local
858 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
897 rsdAllocationRead1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, void *data, size_t sizeBytes) argument
909 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
938 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
1100 mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
1118 mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
1136 mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
[all...]
H A DrsdAllocation.h104 uint32_t xoff, uint32_t lod, size_t count,
108 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
113 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
119 uint32_t xoff, uint32_t lod, size_t count,
123 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
128 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
/frameworks/rs/
H A DrsType.h73 uint32_t getLODDimX(uint32_t lod) const {
74 rsAssert(lod < mHal.state.lodCount);
75 return mHal.state.lodDimX[lod];
77 uint32_t getLODDimY(uint32_t lod) const {
78 rsAssert(lod < mHal.state.lodCount);
79 return mHal.state.lodDimY[lod];
81 uint32_t getLODDimZ(uint32_t lod) const {
82 rsAssert(lod < mHal.state.lodCount);
83 return mHal.state.lodDimZ[lod];
H A DrsGrallocConsumer.cpp40 uint32_t y = a->mHal.drvState.lod[0].dimY;
42 mConsumer->setDefaultBufferSize(a->mHal.drvState.lod[0].dimX, y);
126 mAlloc->mHal.drvState.lod[0].mallocPtr = reinterpret_cast<uint8_t*>(bufferPointer);
127 mAlloc->mHal.drvState.lod[0].stride = mSlots[buf].mGraphicBuffer->getStride() *
132 assert(mAlloc->mHal.drvState.lod[0].dimX ==
134 assert(mAlloc->mHal.drvState.lod[0].dimY ==
145 mAlloc->mHal.drvState.lod[1].mallocPtr = ycbcr.cr;
146 mAlloc->mHal.drvState.lod[2].mallocPtr = ycbcr.cb;
148 mAlloc->mHal.drvState.lod[0].stride = ycbcr.ystride;
149 mAlloc->mHal.drvState.lod[
[all...]
H A DrsAdapter.h44 inline void setLOD(uint32_t lod) {mLOD = lod;} argument
76 inline void setLOD(uint32_t lod) {mLOD = lod;} argument
H A DrsAllocation.cpp97 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod, argument
108 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
112 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
114 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
119 uint32_t lod,
121 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
125 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t lod, argument
136 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
139 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
153 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, fac
118 data(Context *rsc, 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
156 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
541 rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
547 rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face, const void *data, size_t sizeBytes, size_t eoff) argument
553 rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) argument
559 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
565 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
719 rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
725 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...]
H A DrsAllocation.h82 } lod[android::renderscript::Allocation::MAX_LOD]; member in struct:android::renderscript::Allocation::Hal::DrvState
114 void data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes);
115 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
117 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
120 void read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes);
121 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
123 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A Drs.spec136 param uint32_t lod
144 param uint32_t lod
153 param uint32_t lod
166 param uint32_t lod
186 param uint32_t lod
195 param uint32_t lod
H A DrsType.cpp92 for (uint32_t lod=0; lod < mHal.state.lodCount; lod++) {
93 mHal.state.lodDimX[lod] = tx;
94 mHal.state.lodDimY[lod] = ty;
95 mHal.state.lodDimZ[lod] = tz;
180 uint8_t lod = stream->loadU8(); local
182 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0, 0);
H A Drs_hal.h58 uint32_t lod; member in struct:android::renderscript::__anon1649
160 * mHal.drvState.lod[0-2] will be updated with the new values.
168 uint32_t xoff, uint32_t lod, size_t count,
171 uint32_t xoff, uint32_t yoff, uint32_t lod,
175 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
180 uint32_t xoff, uint32_t lod, size_t count,
183 uint32_t xoff, uint32_t yoff, uint32_t lod,
187 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
/frameworks/rs/driver/runtime/
H A Drs_sample.c271 rs_data_kind dk, rs_data_type dt, uint32_t lod) {
273 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
321 rs_data_kind dk, rs_data_type dt, uint32_t lod) {
323 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
324 size_t stride = alloc->mHal.drvState.lod[lod].stride;
350 rs_data_type dt, uint32_t lod) {
352 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[lo
269 getBilinearSample1D(const Allocation_t *alloc, float2 weights, uint32_t iPixel, uint32_t next, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
319 getBilinearSample2D(const Allocation_t *alloc, float w0, float w1, float w2, float w3, int lx, int ly, int nx, int ny, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
349 getNearestSample(const Allocation_t *alloc, uint32_t iPixel, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
386 getNearestSample(const Allocation_t *alloc, uint2 iPixel, rs_data_kind dk, rs_data_type dt, uint32_t lod) argument
422 sample_LOD_LinearPixel(const Allocation_t *alloc, rs_data_kind dk, rs_data_type dt, rs_sampler_value wrapS, float uv, uint32_t lod) argument
454 sample_LOD_NearestPixel(const Allocation_t *alloc, rs_data_kind dk, rs_data_type dt, rs_sampler_value wrapS, float uv, uint32_t lod) argument
467 sample_LOD_LinearPixel(const Allocation_t *alloc, rs_data_kind dk, rs_data_type dt, rs_sampler_value wrapS, rs_sampler_value wrapT, float2 uv, uint32_t lod) argument
515 sample_LOD_NearestPixel(const Allocation_t *alloc, rs_data_kind dk, rs_data_type dt, rs_sampler_value wrapS, rs_sampler_value wrapT, float2 uv, uint32_t lod) argument
535 rsSample(rs_allocation a, rs_sampler s, float uv, float lod) argument
587 rsSample(rs_allocation a, rs_sampler s, float2 uv, float lod) argument
[all...]
H A Drs_allocation.c9 return alloc->mHal.drvState.lod[0].dimX;
15 return alloc->mHal.drvState.lod[0].dimY;
21 return alloc->mHal.drvState.lod[0].dimZ;
109 uint8_t *p = (uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr;
110 const uint32_t stride = alloc->mHal.drvState.lod[0].stride;
111 const uint32_t dimY = alloc->mHal.drvState.lod[0].dimY;
165 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr;
173 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[0].mallocPtr;
175 const uint32_t stride = alloc->mHal.drvState.lod[0].stride;
182 const uint8_t *p = (const uint8_t *)alloc->mHal.drvState.lod[
[all...]
H A Drs_structs.h53 } lod[16/*android::renderscript::Allocation::MAX_LOD*/]; member in struct:Allocation::__anon1619::DrvState
/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java100 void initLOD(int lod) { argument
101 if (lod < 0) {
102 throw new RSIllegalArgumentException("Attempting to set negative lod (" + lod + ").");
109 for (int ct=0; ct < lod; ct++) {
111 throw new RSIllegalArgumentException("Attempting to set lod (" + lod + ") out of range.");
140 * @param lod The LOD to make active.
142 public void setLOD(int lod) { argument
150 initLOD(lod);
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicYuvToRGB.cpp121 const uchar *pinY = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
127 size_t strideY = cp->alloc->mHal.drvState.lod[0].stride;
130 if (cp->alloc->mHal.drvState.lod[0].dimY == 0) {
141 const uchar *pinU = (const uchar *)cp->alloc->mHal.drvState.lod[1].mallocPtr;
142 const size_t strideU = cp->alloc->mHal.drvState.lod[1].stride;
145 const uchar *pinV = (const uchar *)cp->alloc->mHal.drvState.lod[2].mallocPtr;
146 const size_t strideV = cp->alloc->mHal.drvState.lod[2].stride;
152 //ALOGE("dimX, %d, dimY, %d", cp->alloc->mHal.drvState.lod[0].dimX, cp->alloc->mHal.drvState.lod[0].dimY);
157 v = ((uint8_t *)cp->alloc->mHal.drvState.lod[
[all...]
H A DrsCpuScriptGroup.cpp74 mp->ptrIn = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr;
78 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->y;
80 if (sl->ins[ct]->mHal.drvState.lod[0].dimY > p->lid) {
81 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->lid;
87 mp->ptrOut = (uint8_t *)sl->outs[ct]->mHal.drvState.lod[0].mallocPtr;
91 mp->out = mp->ptrOut + sl->outs[ct]->mHal.drvState.lod[0].stride * p->y;
93 if (sl->outs[ct]->mHal.drvState.lod[0].dimY > p->lid) {
94 mp->out = mp->ptrOut + sl->outs[ct]->mHal.drvState.lod[0].stride * p->lid;
H A DrsCpuIntrinsic3DLUT.cpp70 const uchar *bp = (const uchar *)cp->mLUT->mHal.drvState.lod[0].mallocPtr;
73 cp->mLUT->mHal.drvState.lod[0].dimX - 1,
74 cp->mLUT->mHal.drvState.lod[0].dimY - 1,
75 cp->mLUT->mHal.drvState.lod[0].dimZ - 1,
80 const size_t stride_y = cp->mLUT->mHal.drvState.lod[0].stride;
81 const size_t stride_z = stride_y * cp->mLUT->mHal.drvState.lod[0].dimY;
H A DrsCpuIntrinsicLUT.cpp66 const uchar *tr = (const uchar *)cp->lut->mHal.drvState.lod[0].mallocPtr;
H A DrsCpuIntrinsicConvolve3x3.cpp195 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr;
196 const size_t stride = cp->mAlloc->mHal.drvState.lod[0].stride;
242 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr;
243 const size_t stride = cp->mAlloc->mHal.drvState.lod[0].stride;
287 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr;
288 const size_t stride = cp->mAlloc->mHal.drvState.lod[0].stride;
332 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr;
333 const size_t stride = cp->mAlloc->mHal.drvState.lod[0].stride;
377 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr;
378 const size_t stride = cp->mAlloc->mHal.drvState.lod[
[all...]
H A DrsCpuIntrinsicConvolve5x5.cpp357 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
358 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride;
406 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
407 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride;
455 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
456 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride;
504 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
505 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride;
553 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
554 const size_t stride = cp->alloc->mHal.drvState.lod[
[all...]
H A DrsCpuScript.cpp751 if (ain && (const uint8_t *)ain->mHal.drvState.lod[0].mallocPtr == NULL) {
755 if (aout && (const uint8_t *)aout->mHal.drvState.lod[0].mallocPtr == NULL) {
828 mtls->fep.ptrIn = (const uint8_t *)ain->mHal.drvState.lod[0].mallocPtr;
830 mtls->fep.yStrideIn = ain->mHal.drvState.lod[0].stride;
836 mtls->fep.ptrOut = (uint8_t *)aout->mHal.drvState.lod[0].mallocPtr;
838 mtls->fep.yStrideOut = aout->mHal.drvState.lod[0].stride;
1009 ptr = data->mHal.drvState.lod[0].mallocPtr;
1112 if (a->mHal.drvState.lod[0].mallocPtr == ptr) {
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp106 const GGLSurface& EGLTextureObject::mip(int lod) const
108 if (lod<=0 || !mMipmaps)
110 lod = min(lod-1, mNumExtraLod-1);
111 return mMipmaps[lod];
114 GGLSurface& EGLTextureObject::editMip(int lod) argument
116 return const_cast<GGLSurface&>(mip(lod));
H A DTextureObjectManager.h58 const GGLSurface& mip(int lod) const;
59 GGLSurface& editMip(int lod);
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp439 nAllocationData1D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jintArray data, int sizeBytes) argument
444 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
449 nAllocationData1D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jshortArray data, int sizeBytes) argument
454 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
459 nAllocationData1D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jbyteArray data, int sizeBytes) argument
464 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
469 nAllocationData1D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jfloatArray data, int sizeBytes) argument
474 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
480 nAllocationElementData1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint compIdx, jbyteArray data, int sizeBytes) argument
485 rsAllocation1DElementData(con, (RsAllocation)alloc, offset, lod, pt
490 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jshortArray data, int sizeBytes) argument
501 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jbyteArray data, int sizeBytes) argument
512 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jintArray data, int sizeBytes) 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.cpp608 nAllocationData1D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jintArray data, int sizeBytes) argument
613 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
618 nAllocationData1D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jshortArray data, int sizeBytes) argument
623 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
628 nAllocationData1D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jbyteArray data, int sizeBytes) argument
633 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
638 nAllocationData1D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jfloatArray data, int sizeBytes) argument
643 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes);
649 nAllocationElementData1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint compIdx, jbyteArray data, int sizeBytes) argument
654 rsAllocation1DElementData(con, (RsAllocation)alloc, offset, lod, pt
659 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jshortArray data, int sizeBytes) argument
670 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jbyteArray data, int sizeBytes) argument
681 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jintArray data, int sizeBytes) argument
692 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
727 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
738 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
749 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
760 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 788 milliseconds

12