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

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c74 effect_entry_t *fx = (effect_entry_t *)self; local
76 if (fx->lib == NULL) {
80 pthread_mutex_lock(&fx->lib->lock);
83 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer);
84 pthread_mutex_unlock(&fx->lib->lock);
99 effect_entry_t *fx = (effect_entry_t *)self; local
101 if (fx->lib == NULL) {
105 pthread_mutex_lock(&fx->lib->lock);
108 ret = (*fx
120 effect_entry_t *fx = (effect_entry_t *)self; local
140 effect_entry_t *fx = (effect_entry_t *)self; local
266 effect_entry_t *fx; local
328 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/base/core/jni/android/graphics/
H A DMovie.cpp67 jfloat fx, jfloat fy, jobject jpaint) {
74 SkScalar sx = SkFloatToScalar(fx);
66 movie_draw(JNIEnv* env, jobject movie, jobject canvas, jfloat fx, jfloat fy, jobject jpaint) argument
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java308 void extractParams(Element fx, ArrayList<ShaderParam> params) { argument
309 Node paramNode = fx.getFirstChild();
368 private void convertEffects(Element fx) { argument
369 String id = fx.getAttribute("id");
372 NodeList nl = fx.getElementsByTagName("newparam");
380 nl = fx.getElementsByTagName("blinn");
388 nl = fx.getElementsByTagName("lambert");
396 nl = fx.getElementsByTagName("phong");
/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, size_t *size, void *value);
81 int (* set_device)(preproc_effect_t *fx, uint32_t device);
842 preproc_effect_t *fx)
844 ALOGW_IF(Effect_Release(fx) !
841 Session_ReleaseEffect(preproc_session_t *session, preproc_effect_t *fx) argument
1889 preproc_effect_t *fx = (preproc_effect_t *)interface; local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapShader_Delegate.java196 private int getColor(float fx, float fy) { argument
197 int x = getCoordinate(Math.round(fx), mImage.getWidth(), mTileModeX);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java677 float fx = centerX - eyeX;
682 float rlf = 1.0f / Matrix.length(fx, fy, fz);
683 fx *= rlf;
689 float sy = fz * upX - fx * upZ;
690 float sz = fx * upY - fy * upX;
700 float uy = sz * fx - sx * fz;
701 float uz = sx * fy - sy * fx;
705 rm[rmOffset + 2] = -fx;
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp305 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input); local
306 status_t status = fx->initCheck();
309 // fx goes out of scope and strong ref on AudioEffect is released
313 fx->setParameter(effect->mParams[j]);
315 inputDesc->mEffects.add(fx);

Completed in 1075 milliseconds