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

/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp305 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, argument
308 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i)",
309 con, eid, dimx, dimy, dimz, mips, faces);
311 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp3818 int eid = Res_GETENTRY(resID); local
3819 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
3824 sp<ConfigList> c = t->getOrderedConfigs()[eid];
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java174 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces); argument
175 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces) { argument
177 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces);
422 native int rsnScriptIntrinsicCreate(int con, int id, int eid); argument
423 synchronized int nScriptIntrinsicCreate(int id, int eid) { argument
425 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java243 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces); argument
244 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces) { argument
246 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces);
564 native int rsnScriptIntrinsicCreate(int con, int id, int eid); argument
565 synchronized int nScriptIntrinsicCreate(int id, int eid) { argument
567 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp429 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, argument
432 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i)",
433 con, eid, dimx, dimy, dimz, mips, faces);
435 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces);
1075 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, RsContext con, jint id, jint eid) argument
1077 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", con, id, (void *)eid);
1078 return (jint)rsScriptIntrinsicCreate(con, id, (RsElement)eid);

Completed in 161 milliseconds