Home
last modified time | relevance | path

Searched refs:eid (Results 1 – 8 of 8) sorted by relevance

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
DType.java196 public long getDummyType(RenderScript mRS, long eid) { in getDummyType() argument
197 return mRS.nIncTypeCreate(eid, mDimX, mDimY, mDimZ, mDimMipmaps, mDimFaces, mDimYuv); in getDummyType()
DRenderScript.java363 …native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, in… in rsnTypeCreate() argument
364 …synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv)… in nTypeCreate() argument
366 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); in nTypeCreate()
736 native long rsnScriptIntrinsicCreate(long con, int id, long eid, boolean mUseInc); in rsnScriptIntrinsicCreate() argument
737 synchronized long nScriptIntrinsicCreate(int id, long eid, boolean mUseInc) { in nScriptIntrinsicCreate() argument
764 return rsnScriptIntrinsicCreate(mIncCon, id, eid, mUseInc); in nScriptIntrinsicCreate()
766 return rsnScriptIntrinsicCreate(mContext, id, eid, mUseInc); in nScriptIntrinsicCreate()
994 …native long rsnIncTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces,… in rsnIncTypeCreate() argument
995 …synchronized long nIncTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int y… in nIncTypeCreate() argument
997 return rsnIncTypeCreate(mIncCon, eid, x, y, z, mips, faces, yuv); in nIncTypeCreate()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java170 int eid = data.get() & Constants.BYTE_MASK; in NetworkDetail() local
178 if (eid == 0 && elementLength == 0 && ssidOctets != null) { in NetworkDetail()
185 switch (eid) { in NetworkDetail()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java419 …native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, in… in rsnTypeCreate() argument
420 …synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv)… in nTypeCreate() argument
422 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); in nTypeCreate()
807 native long rsnScriptIntrinsicCreate(long con, int id, long eid); in rsnScriptIntrinsicCreate() argument
808 synchronized long nScriptIntrinsicCreate(int id, long eid) { in nScriptIntrinsicCreate() argument
810 return rsnScriptIntrinsicCreate(mContext, id, eid); in nScriptIntrinsicCreate()
/frameworks/support/v8/renderscript/jni/
Dandroid_renderscript_RenderScript.cpp1008 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, in nTypeCreate() argument
1012 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
1014 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, in nTypeCreate()
1682 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid, jboolean mUseInc) in nScriptIntrinsicCreate() argument
1684 LOG_API("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, (void *)eid); in nScriptIntrinsicCreate()
1686 … return (jlong)(uintptr_t)dispatchTabInc.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid); in nScriptIntrinsicCreate()
1688 … return (jlong)(uintptr_t)dispatchTab.ScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid); in nScriptIntrinsicCreate()
1911 nIncTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, in nIncTypeCreate() argument
1915 incCon, eid, dimx, dimy, dimz, mips, faces, yuv); in nIncTypeCreate()
1917 return (jlong)(uintptr_t)dispatchTabInc.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, in nIncTypeCreate()
/frameworks/rs/
Drs.spec463 param RsElement eid
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp1090 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, in nTypeCreate() argument
1095 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
1098 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips, in nTypeCreate()
2005 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) in nScriptIntrinsicCreate() argument
2009 (void *)eid); in nScriptIntrinsicCreate()
2011 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid); in nScriptIntrinsicCreate()
/frameworks/base/tools/aapt/
DResourceTable.cpp4308 int eid = Res_GETENTRY(resID); in getEntry() local
4309 if (eid < 0 || eid >= (int)t->getOrderedConfigs().size()) { in getEntry()
4314 sp<ConfigList> c = t->getOrderedConfigs()[eid]; in getEntry()