Searched refs:type (Results 1 - 25 of 749) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1372 XAuint32 type,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h312 /** MIME-type-based data format definition where formatType must be SL_DATAFORMAT_MIME*/
323 /* Container type */
355 /** PCM-type-based data format definition where formatType must be SL_DATAFORMAT_PCM*/
2027 SLuint8 type,
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp464 SLresult audioPlayer_setStreamType(CAudioPlayer* ap, SLint32 type) { argument
466 SL_LOGV("type %d", type);
469 switch(type) {
494 // stream type needs to be set before the object is realized
575 SL_LOGE("Unsupported sink locator type 0x%x", (unsigned)sinkLocatorType);
586 * returns the Android object type if the locator type combinations for the source and sinks
595 AndroidObjectType type = INVALID_TYPE; local
618 type
[all...]
H A DOutputMix_to_android.cpp35 if (memcmp(SL_IID_EQUALIZER, &om->mEqualizer.mEqDescriptor.type,
40 if (memcmp(SL_IID_BASSBOOST, &om->mBassBoost.mBassBoostDescriptor.type,
45 if (memcmp(SL_IID_PRESETREVERB, &om->mPresetReverb.mPresetReverbDescriptor.type,
51 &om->mEnvironmentalReverb.mEnvironmentalReverbDescriptor.type,
56 if (memcmp(SL_IID_VIRTUALIZER, &om->mVirtualizer.mVirtualizerDescriptor.type,
H A Dandroid_Effect.cpp257 &ibb->mBassBoostDescriptor.type))
276 if (!android_fx_initEffectObj(sessionId, ieq->mEqEffect, &ieq->mEqDescriptor.type)) {
326 &ivi->mVirtualizerDescriptor.type)) {
361 ipr->mPresetReverbEffect, &ipr->mPresetReverbDescriptor.type)) {
396 ier->mEnvironmentalReverbEffect, &ier->mEnvironmentalReverbDescriptor.type)) {
617 const effect_uuid_t *type) {
620 effect = new android::AudioEffect(type, EFFECT_UUID_NULL,
656 (0 == memcmp(effectId, &descriptor.type, sizeof(effect_uuid_t)))) {
759 NULL, // not using type to create effect
616 android_fx_initEffectObj(int sessionId, android::sp<android::AudioEffect>& effect, const effect_uuid_t *type) argument
H A Dandroid_Effect.h133 const effect_uuid_t *type);
H A Dandroid_sles_conversions.h24 static inline SLuint32 android_to_sles_streamType(int type) { argument
25 return (SLuint32) type;
38 static inline int sles_to_android_streamType(SLuint32 type) { argument
39 return (int)type;
/frameworks/wilhelm/src/itf/
H A DIAndroidEffectCapabilities.c55 *pEffectType = (SLInterfaceID) &thiz->mFxDescriptors[index].type;
112 SL_LOGV("effect %d: type=%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x name=%s",
114 thiz->mFxDescriptors[i].type.timeLow,
115 thiz->mFxDescriptors[i].type.timeMid,
116 thiz->mFxDescriptors[i].type.timeHiAndVersion,
117 thiz->mFxDescriptors[i].type.clockSeq,
118 thiz->mFxDescriptors[i].type.node[0],
119 thiz->mFxDescriptors[i].type.node[1],
120 thiz->mFxDescriptors[i].type.node[2],
121 thiz->mFxDescriptors[i].type
[all...]
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayStreamType.cpp47 /* Play an audio URIs on the given stream type */
48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type) argument
139 /* Set the Android audio stream type on the player */
141 SL_ANDROID_KEY_STREAM_TYPE, &type, sizeof(SLint32));
143 fprintf(stderr, "invalid stream type %d\n", type);
192 /* Get the stream type during playback */
199 fprintf(stderr, "ERROR: size for stream type is %u, should be %u\n",
205 if (currentType != type) {
206 fprintf(stderr, "ERROR: stream type i
[all...]
/frameworks/wilhelm/tools/permute/
H A Dpermute.c135 unsigned type = sfinfo_in.format & SF_FORMAT_TYPEMASK; local
136 switch (type) {
140 fprintf(stderr, "%s: unsupported type 0x%X\n", path_in, type);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java178 * @param class type
181 public <T> UiSelector className(Class<T> type) { argument
182 return buildSelector(SELECTOR_CLASS, type.getName());
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocation.java61 * copy it to the slave memory store. Both type checked and unchecked copies are provided.
116 * No mipmaps will be generated and the type generated from the
123 * type of the allocation will contain a full mipmap chain. On
129 * The type of the allocation will be the same as MIPMAP_NONE.
152 * Get the element of the type of the Allocation.
216 "32 bit integer source does not match allocation type " + mType.mElement.mType);
225 "16 bit integer source does not match allocation type " + mType.mElement.mType);
234 "8 bit integer source does not match allocation type " + mType.mElement.mType);
242 "32 bit float source does not match allocation type " + mType.mElement.mType);
254 "Object source does not match allocation type "
905 createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) argument
928 createTyped(RenderScript rs, Type type, int usage) argument
942 createTyped(RenderScript rs, Type type) argument
[all...]
H A DRenderScript.java152 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize); argument
153 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) { argument
155 return rsnElementCreate(mContext, type, kind, norm, vecSize);
185 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer); argument
186 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) { argument
188 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
190 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
191 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
193 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
195 native int rsnAllocationCubeCreateFromBitmap(int con, int type, in argument
196 nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) argument
200 rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp) argument
201 nAllocationCreateBitmapRef(int type, Bitmap bmp) argument
[all...]
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp243 nElementCreate(JNIEnv *_env, jobject _this, RsContext con, jint type, jint kind, jboolean norm, jint size) argument
245 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", con, type, kind, norm, size);
246 return (jint)rsElementCreate(con, (RsDataType)type, (RsDataKind)kind, norm, size);
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);
352 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
359 id = (jint)rsAllocationCreateFromBitmap(con, (RsType)type,
368 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdAllocation.cpp68 const Type *type, uint8_t *ptr) {
72 drv->lod[0].dimX = type->getDimX();
73 drv->lod[0].dimY = type->getDimY();
75 drv->lod[0].stride = drv->lod[0].dimX * type->getElementSizeBytes();
76 drv->lodCount = type->getLODCount();
77 drv->faceCount = type->getDimFaces();
91 drv->lod[lod].stride = tx * type->getElementSizeBytes();
161 memset(ptr, 0, alloc->mHal.state.type->getSizeBytes());
272 const uint32_t eSize = alloc->mHal.state.type->getElementSizeBytes();
324 const uint32_t eSize = alloc->mHal.state.type
67 AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, const Type *type, uint8_t *ptr) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsAllocation.cpp25 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages, argument
34 setType(type);
38 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages, argument
40 Allocation *a = new Allocation(rsc, type, usages, mc, ptr);
42 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
52 const Type *type = mHal.state.type; local
53 mHal.state.dimensionX = type->getDimX();
54 mHal.state.dimensionY = type->getDimY();
55 mHal.state.dimensionZ = type
221 writePackedData(Context *rsc, const Type *type, uint8_t *dst, const uint8_t *src, bool dstPadded) argument
330 Type *type = Type::createFromStream(rsc, stream); local
[all...]
H A DrsAllocation.h47 const Type * type; member in struct:android::renderscript::Allocation::Hal::State
83 const Type * getType() const {return mHal.state.type;}
144 mHal.state.type = t;
152 static void writePackedData(Context *rsc, const Type *type, uint8_t *dst,
H A DrsScriptGroup.cpp182 const Type ** type, size_t typeSize) {
202 l->mType = type[ct];
338 const RsType * type, size_t typeSize) {
346 (const Type **) type, typeSize);
177 create(Context *rsc, ScriptKernelID ** kernels, size_t kernelsSize, ScriptKernelID ** src, size_t srcSize, ScriptKernelID ** dstK, size_t dstKSize, ScriptFieldID ** dstF, size_t dstFSize, const Type ** type, size_t typeSize) argument
333 rsi_ScriptGroupCreate(Context *rsc, RsScriptKernelID * kernels, size_t kernelsSize, RsScriptKernelID * src, size_t srcSize, RsScriptKernelID * dstK, size_t dstKSize, RsScriptFieldID * dstF, size_t dstFSize, const RsType * type, size_t typeSize) argument
H A DrsScriptGroup.h87 const Type ** type, size_t typeSize);
H A DrsType.cpp179 ALOGE("type loading skipped due to invalid class id\n");
196 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0 ); local
198 return type;
317 void rsaTypeGetNativeData(RsContext con, RsType type, uint32_t *typeData, uint32_t typeDataSize) { argument
321 Type *t = static_cast<Type *>(type);
H A DrsType.h116 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces);
117 type->incUserRef();
118 return type.get();
H A Drsg_generator.c30 switch (vt->type) {
H A Dspec.h15 int type; member in struct:__anon1596
H A Dspec.l28 currType->type = 4;
105 currType->type = 1;
111 currType->type = 1;
117 currType->type = 1;
123 currType->type = 1;
129 currType->type = 2;
135 currType->type = 2;
141 currType->type = 2;
147 currType->type = 2;
153 currType->type
[all...]
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh36 #define CVT_FUNC(type) CVT_FUNC_2(type, uchar) \
37 CVT_FUNC_2(type, char) \
38 CVT_FUNC_2(type, ushort) \
39 CVT_FUNC_2(type, short) \
40 CVT_FUNC_2(type, uint) \
41 CVT_FUNC_2(type, int) \
42 CVT_FUNC_2(type, float)
242 * type.
270 * type
[all...]

Completed in 1310 milliseconds

1234567891011>>