Searched defs:eid (Results 1 - 7 of 7) sorted by relevance

/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DType.java196 public long getDummyType(RenderScript mRS, long eid) { argument
197 return mRS.nIncTypeCreate(eid, mDimX, mDimY, mDimZ, mDimMipmaps, mDimFaces, mDimYuv);
H A DRenderScript.java363 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
364 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
366 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
766 native long rsnScriptIntrinsicCreate(long con, int id, long eid, boolean mUseInc); argument
767 synchronized long nScriptIntrinsicCreate(int id, long eid, boolean mUseInc) { argument
792 return rsnScriptIntrinsicCreate(mIncCon, id, eid, mUseInc);
794 return rsnScriptIntrinsicCreate(mContext, id, eid, mUseInc);
1022 native long rsnIncTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
1023 synchronized long nIncTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
1025 return rsnIncTypeCreate(mIncCon, eid,
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4379 int eid = Res_GETENTRY(resID); local
4380 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
4385 sp<ConfigList> c = t->getOrderedConfigs()[eid];
/frameworks/rs/
H A DrsApiStubs.cpp624 extern "C" RsScript rsScriptIntrinsicCreate (RsContext ctxWrapper, uint32_t id, RsElement eid) argument
626 return RS_DISPATCH(ctxWrapper, ScriptIntrinsicCreate, id, eid);
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp1013 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1016 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1017 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv);
1019 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy,
1900 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid, jboolean mUseInc) argument
1902 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid);
1904 return (jlong)(uintptr_t)dispatchTabInc.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
1906 return (jlong)(uintptr_t)dispatchTab.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
2190 nIncTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
2193 LOG_API("nTypeCreate, con(%p) eid(
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java430 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
431 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
433 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
841 native long rsnScriptIntrinsicCreate(long con, int id, long eid); argument
842 synchronized long nScriptIntrinsicCreate(int id, long eid) { argument
844 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1180 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1184 ALOGD("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1185 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv);
1188 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips,
2260 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) argument
2264 (void *)eid);
2266 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);

Completed in 151 milliseconds