Searched defs:fx (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/extractors/mp3/
H A DXINGSeeker.cpp52 float fx; local
54 fx = 0.0f;
56 fx = 256.0f;
70 fx = fa + (fb-fa)*(percent-a);
73 *pos = (int)((1.0f/256.0f)*fx*mSizeBytes) + mFirstFramePos;
/frameworks/base/core/jni/android/graphics/
H A DMovie.cpp67 jfloat fx, jfloat fy, jlong paintHandle) {
80 c->drawBitmap(*wrapper, fx, fy, p);
66 movie_draw(JNIEnv* env, jobject movie, jlong canvasHandle, jfloat fx, jfloat fy, jlong paintHandle) argument
/frameworks/layoutlib/bridge/src/android/graphics/
H A DBitmapShader_Delegate.java203 private int getColor(float fx, float fy) { argument
204 int x = getCoordinate(Math.round(fx), mImage.getWidth(), mTileModeX);
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp36 float fx = centerX - eyeX; local
41 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
42 fx *= rlf;
55 float sy = fz * upX - fx * upZ;
56 float sz = fx * upY - fy * upX;
60 float uy = sz * fx - sx * fz;
61 float uz = sx * fy - sy * fx;
66 m[2] = -fx;
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp42 float fx = centerX - eyeX; local
47 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
48 fx *= rlf;
61 float sy = fz * upX - fx * upZ;
62 float sz = fx * upY - fy * upX;
66 float uy = sz * fx - sx * fz;
67 float uz = sx * fy - sy * fx;
72 m[2] = -fx;
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c71 effect_entry_t *fx = (effect_entry_t *)self; local
73 if (fx->lib == NULL) {
77 pthread_mutex_lock(&fx->lib->lock);
80 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer);
81 pthread_mutex_unlock(&fx->lib->lock);
96 effect_entry_t *fx = (effect_entry_t *)self; local
98 if (fx->lib == NULL) {
102 pthread_mutex_lock(&fx->lib->lock);
105 ret = (*fx
117 effect_entry_t *fx = (effect_entry_t *)self; local
137 effect_entry_t *fx = (effect_entry_t *)self; local
263 effect_entry_t *fx; local
329 effect_entry_t *fx; local
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp121 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, -1, 0, local
123 status_t status = fx->initCheck();
127 // fx goes out of scope and strong ref on AudioEffect is released
131 fx->setParameter(effect->mParams[j]);
135 sessionDesc->mEffects.add(fx);
270 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, 0, 0, 0, local
272 status_t status = fx->initCheck();
276 // fx goes out of scope and strong ref on AudioEffect is released
281 procDesc->mEffects.add(fx);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp47 float fx = centerX - eyeX; local
52 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
53 fx *= rlf;
66 float sy = fz * upX - fx * upZ;
67 float sz = fx * upY - fy * upX;
71 float uy = sz * fx - sx * fz;
72 float uz = sx * fy - sy * fx;
77 m[2] = -fx;
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp74 int (* create)(preproc_effect_t *fx);
75 int (* init)(preproc_effect_t *fx);
76 int (* reset)(preproc_effect_t *fx);
77 void (* enable)(preproc_effect_t *fx);
78 void (* disable)(preproc_effect_t *fx);
79 int (* set_parameter)(preproc_effect_t *fx, void *param, void *value);
80 int (* get_parameter)(preproc_effect_t *fx, void *param, uint32_t *size, void *value);
81 int (* set_device)(preproc_effect_t *fx, uint32_t device);
898 preproc_effect_t *fx)
900 ALOGW_IF(Effect_Release(fx) !
897 Session_ReleaseEffect(preproc_session_t *session, preproc_effect_t *fx) argument
1929 preproc_effect_t *fx = (preproc_effect_t *)interface; local
[all...]

Completed in 4112 milliseconds