Searched refs:fx (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c90 effect_entry_t *fx = (effect_entry_t *)self; local
92 if (fx->lib == NULL) {
96 pthread_mutex_lock(&fx->lib->lock);
99 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer);
100 pthread_mutex_unlock(&fx->lib->lock);
115 effect_entry_t *fx = (effect_entry_t *)self; local
117 if (fx->lib == NULL) {
121 pthread_mutex_lock(&fx->lib->lock);
124 ret = (*fx
136 effect_entry_t *fx = (effect_entry_t *)self; local
156 effect_entry_t *fx = (effect_entry_t *)self; local
282 effect_entry_t *fx; local
349 effect_entry_t *fx; local
[all...]
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp31 float fx = centerX - eyeX; local
36 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
37 fx *= rlf;
50 float sy = fz * upX - fx * upZ;
51 float sz = fx * upY - fy * upX;
55 float uy = sz * fx - sx * fz;
56 float uz = sx * fy - sy * fx;
61 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/libstagefright/
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/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp45 float fx = centerX - eyeX; local
50 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
51 fx *= rlf;
64 float sy = fz * upX - fx * upZ;
65 float sz = fx * upY - fy * upX;
69 float uy = sz * fx - sx * fz;
70 float uz = sx * fy - sy * fx;
75 m[2] = -fx;
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp113 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, -1, 0, local
115 status_t status = fx->initCheck();
119 // fx goes out of scope and strong ref on AudioEffect is released
123 fx->setParameter(effect->mParams[j]);
127 sessionDesc->mEffects.add(fx);
262 sp<AudioEffect> fx = new AudioEffect(NULL, String16("android"), &effect->mUuid, 0, 0, 0, local
264 status_t status = fx->initCheck();
268 // fx goes out of scope and strong ref on AudioEffect is released
273 procDesc->mEffects.add(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...]
/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/base/opengl/java/android/opengl/
H A DMatrix.java705 float fx = centerX - eyeX;
710 float rlf = 1.0f / Matrix.length(fx, fy, fz);
711 fx *= rlf;
717 float sy = fz * upX - fx * upZ;
718 float sz = fx * upY - fy * upX;
728 float uy = sz * fx - sx * fz;
729 float uz = sx * fy - sy * fx;
733 rm[rmOffset + 2] = -fx;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapShader_Delegate.java201 private int getColor(float fx, float fy) { argument
202 int x = getCoordinate(Math.round(fx), mImage.getWidth(), mTileModeX);
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java447 final double fx = a / 500 + fy;
450 double tmp = Math.pow(fx, 3);
451 final double xr = tmp > XYZ_EPSILON ? tmp : (116 * fx - 16) / XYZ_KAPPA;
/frameworks/support/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java446 final double fx = a / 500 + fy;
449 double tmp = Math.pow(fx, 3);
450 final double xr = tmp > XYZ_EPSILON ? tmp : (116 * fx - 16) / XYZ_KAPPA;
/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java1863 float fx = fy + (v[1] * 0.002f);
1865 float X = fx > D ? fx * fx * fx : (1.0f / B) * (fx - C);
1882 float fx = X > A ? (float) Math.pow(X, 1.0 / 3.0) : B * X + C;
1887 float a = 500.0f * (fx - fy);
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java774 final double fx = a / 500 + fy;
777 double tmp = Math.pow(fx, 3);
778 final double xr = tmp > XYZ_EPSILON ? tmp : (116 * fx - 16) / XYZ_KAPPA;
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2587 int fx;
2591 fx = field.getInt(null);
2602 SOUND_EFFECT_FILES_MAP[fx][0] = i;

Completed in 742 milliseconds