Searched refs:eid (Results 1 - 8 of 8) 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);
736 native long rsnScriptIntrinsicCreate(long con, int id, long eid, boolean mUseInc); argument
737 synchronized long nScriptIntrinsicCreate(int id, long eid, boolean mUseInc) { argument
764 return rsnScriptIntrinsicCreate(mIncCon, id, eid, mUseInc);
766 return rsnScriptIntrinsicCreate(mContext, id, eid, mUseInc);
994 native long rsnIncTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
995 synchronized long nIncTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
997 return rsnIncTypeCreate(mIncCon, eid,
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DNetworkDetail.java170 int eid = data.get() & Constants.BYTE_MASK;
178 if (eid == 0 && elementLength == 0 && ssidOctets != null) {
179 // Don't overwrite SSID (eid 0) with trailing zero garbage
185 switch (eid) {
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java419 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); argument
420 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { argument
422 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
807 native long rsnScriptIntrinsicCreate(long con, int id, long eid); argument
808 synchronized long nScriptIntrinsicCreate(int id, long eid) { argument
810 return rsnScriptIntrinsicCreate(mContext, id, eid);
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp1008 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1011 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1012 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv);
1014 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy,
1682 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid, jboolean mUseInc) argument
1684 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid);
1686 return (jlong)(uintptr_t)dispatchTabInc.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
1688 return (jlong)(uintptr_t)dispatchTab.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
1911 nIncTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1914 LOG_API("nTypeCreate, con(%p) eid(
[all...]
/frameworks/rs/
H A Drs.spec463 param RsElement eid
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1090 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, argument
1094 ALOGD("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
1095 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv);
1098 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips,
2005 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) argument
2009 (void *)eid);
2011 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4308 int eid = Res_GETENTRY(resID); local
4309 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) {
4314 sp<ConfigList> c = t->getOrderedConfigs()[eid];

Completed in 8049 milliseconds