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

/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/compile/libbcc/
H A Dlibbcc-device-build.mk52 ifeq ($(TARGET_ARCH),mips)
H A DAndroid.mk100 ifeq ($(TARGET_ARCH),mips)
124 ifeq ($(TARGET_ARCH), mips)
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DAndroid.mk55 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/support/renderscript/v8/rs_support/
H A Drs.spec35 param bool mips
43 param RsAllocationMipmapControl mips
52 param RsAllocationMipmapControl mips
61 param RsAllocationMipmapControl mips
H A DrsAllocation.cpp489 RsAllocationMipmapControl mips,
491 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void *)ptr);
500 RsAllocationMipmapControl mips,
504 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
513 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
522 RsAllocationMipmapControl mips,
529 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
551 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
488 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, uint32_t usages, uint32_t ptr) argument
499 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, uint32_t usages) argument
521 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, 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/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocation.java900 * @param mips specifies desired mipmap behaviour for the
905 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) { argument
910 int id = rs.nAllocationCreateTyped(type.getID(rs), mips.mID, usage, 0);
1018 * @param mips specifies desired mipmap behaviour for the
1027 MipmapControl mips,
1030 Type t = typeFromBitmap(rs, b, mips);
1032 int id = rs.nAllocationCreateFromBitmap(t.getID(rs), mips.mID, b, usage);
1062 * @param mips specifies desired mipmap behaviour for the cubemap
1069 MipmapControl mips,
1092 tb.setMipmaps(mips
1026 createFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1068 createCubemapFromBitmap(RenderScript rs, Bitmap b, MipmapControl mips, int usage) argument
1139 createCubemapFromCubeFaces(RenderScript rs, Bitmap xpos, Bitmap xneg, Bitmap ypos, Bitmap yneg, Bitmap zpos, Bitmap zneg, MipmapControl mips, int usage) argument
[all...]
H A DRenderScript.java174 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces); argument
175 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces) { argument
177 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces);
205 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage); argument
206 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) { argument
208 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
/frameworks/compile/libbcc/runtime/
H A DAndroid.mk24 ifneq ($(TARGET_ARCH),mips)
93 endif # ifneq($(TARGET_ARCH),mips)
/frameworks/rs/
H A Drs.spec35 param bool mips
43 param RsAllocationMipmapControl mips
52 param RsAllocationMipmapControl mips
61 param RsAllocationMipmapControl mips
H A DrsAllocation.cpp551 RsAllocationMipmapControl mips,
553 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void *)ptr);
562 RsAllocationMipmapControl mips,
566 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
575 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
584 RsAllocationMipmapControl mips,
591 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mips, usages, 0);
613 if (mips == RS_ALLOCATION_MIPMAP_FULL) {
550 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, uint32_t usages, uint32_t ptr) argument
561 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, uint32_t usages) argument
583 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mips, const void *data, size_t sizeBytes, 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/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp306 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces)
308 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i)",
309 con, eid, dimx, dimy, dimz, mips, faces);
311 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces);
318 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage, jint pointer) argument
320 LOG_API("nAllocationCreateTyped, con(%p), type(%p), mip(%i), usage(%i), ptr(%p)", con, (RsElement)type, mips, usage, (void *)pointer);
321 return (jint) rsAllocationCreateTyped(con, (RsType)type, (RsAllocationMipmapControl)mips, (uint32_t)usage, (uint32_t)pointer);
305 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid, jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces) argument
/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 373 milliseconds