Searched refs:mips (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/libbcc/
H A Dlibbcc-build-rules.mk40 ifeq ($(TARGET_ARCH),mips)
H A DAndroid.mk87 ifeq ($(TARGET_ARCH),mips)
106 ifeq ($(TARGET_ARCH), mips)
/frameworks/compile/mclinker/lib/Target/Mips/
H A DAndroid.mk27 ifeq ($(TARGET_ARCH),mips)
/frameworks/compile/mclinker/lib/Target/Mips/TargetInfo/
H A DAndroid.mk20 ifeq ($(TARGET_ARCH),mips)
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java1008 * @param mips specifies desired mipmap behaviour for the
1013 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
1018 int id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
1126 * @param mips specifies desired mipmap behaviour for the
1135 MipmapControl mips,
1138 Type t = typeFromBitmap(rs, b, mips);
1140 int id = rs.nAllocationCreateFromBitmap(t.getID(rs), mips.mID, b, usage);
1227 * @param mips specifies desired mipmap behaviour for the cubemap
1234 MipmapControl mips,
1257 tb.setMipmaps(mips
1134 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1233 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1304 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
1397 createFromBitmapResource(RenderScript rs, Resources res, int id, MipmapControl mips, int usage) argument
[all...]
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);
274 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage); argument
275 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) { argument
277 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
/frameworks/rs/cpp/
H A DAllocation.h116 RsAllocationMipmapControl mips, uint32_t usage);
118 RsAllocationMipmapControl mips, uint32_t usage, void * pointer);
H A DAllocation.cpp382 RsAllocationMipmapControl mips, uint32_t usage) {
383 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, 0);
392 RsAllocationMipmapControl mips, uint32_t usage, void *pointer) {
393 void *id = rsAllocationCreateTyped(rs->mContext, type->getID(), mips, usage, (uint32_t)pointer);
445 MipmapControl mips,
450 Allocation alloc = createFromBitmap(rs, b, mips, usage);
381 createTyped(RenderScript *rs, sp<const Type> type, RsAllocationMipmapControl mips, uint32_t usage) argument
391 createTyped(RenderScript *rs, sp<const Type> type, RsAllocationMipmapControl mips, uint32_t usage, void *pointer) argument
/frameworks/rs/
H A Drs.spec35 param bool mips
43 param RsAllocationMipmapControl mips
52 param RsAllocationMipmapControl mips
61 param RsAllocationMipmapControl mips
H A DrsAllocation.cpp601 RsAllocationMipmapControl mips,
603 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void *)ptr);
612 RsAllocationMipmapControl mips,
616 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
624 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
633 RsAllocationMipmapControl mips,
640 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
664 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
600 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, uint32_t usages, uint32_t ptr) argument
611 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t data_length, uint32_t usages) argument
632 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t data_length, uint32_t usages) argument
H A DrsType.cpp308 uint32_t dimY, uint32_t dimZ, bool mips, bool faces) {
311 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces);
307 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mips, bool faces) argument
/frameworks/compile/libbcc/runtime/
H A DAndroid.mk25 ifneq ($(TARGET_ARCH),mips)
94 endif # ifneq($(TARGET_ARCH),mips)
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp430 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces)
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);
460 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage, jint pointer) argument
462 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
463 return (jint) rsAllocationCreateTyped(con, (RsType)type, (RsAllocationMipmapControl)mips, (uint32_t)usage, (uint32_t)pointer);
429 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces) argument

Completed in 762 milliseconds