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

/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/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp501 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
504 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
505 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv);
507 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
1301 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) argument
1303 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid);
1304 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4247 int eid = Res_GETENTRY(resID); local
4248 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
4253 sp<ConfigList> c = t->getOrderedConfigs()[eid];
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java295 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
296 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
298 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
616 native int rsnScriptIntrinsicCreate(int con, int id, int eid); argument
617 synchronized int nScriptIntrinsicCreate(int id, int eid) { argument
619 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java349 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
350 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
352 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
734 native long rsnScriptIntrinsicCreate(long con, int id, long eid); argument
735 synchronized long nScriptIntrinsicCreate(int id, long eid) { argument
737 return rsnScriptIntrinsicCreate(mContext, id, eid);

Completed in 1906 milliseconds