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

/frameworks/support/v8/renderscript/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.cpp4358 int eid = Res_GETENTRY(resID); local
4359 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
4364 sp<ConfigList> c = t->getOrderedConfigs()[eid];
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp1000 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1003 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1004 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv);
1006 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy,
1887 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid, jboolean mUseInc) argument
1889 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid);
1891 return (jlong)(uintptr_t)dispatchTabInc.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
1893 return (jlong)(uintptr_t)dispatchTab.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
2177 nIncTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
2180 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.cpp1169 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1173 ALOGD("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1174 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv);
1177 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips,
2248 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) argument
2252 (void *)eid);
2254 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);

Completed in 122 milliseconds