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

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java214 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
215 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
217 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
535 native int rsnScriptIntrinsicCreate(int con, int id, int eid); argument
536 synchronized int nScriptIntrinsicCreate(int id, int eid) { argument
538 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java326 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
327 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
329 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
728 native int rsnScriptIntrinsicCreate(int con, int id, int eid); argument
729 synchronized int nScriptIntrinsicCreate(int id, int eid) { argument
731 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp308 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, argument
311 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
312 con, eid, dimx, dimy, dimz, mips, faces, yuv);
314 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
896 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, RsContext con, jint id, jint eid) argument
898 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", con, id, (void *)eid);
899 return (jint)rsScriptIntrinsicCreate(con, id, (RsElement)eid);
/frameworks/rs/
H A Drs.spec350 param RsElement eid
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp428 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, argument
431 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
432 con, eid, dimx, dimy, dimz, mips, faces, yuv);
434 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
1234 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, RsContext con, jint id, jint eid) argument
1236 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", con, id, (void *)eid);
1237 return (jint)rsScriptIntrinsicCreate(con, id, (RsElement)eid);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp3884 int eid = Res_GETENTRY(resID); local
3885 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
3890 sp<ConfigList> c = t->getOrderedConfigs()[eid];

Completed in 151 milliseconds