/frameworks/av/media/libeffects/factory/ |
D | EffectsFactory.c | 71 effect_entry_t *fx = (effect_entry_t *)self; in Effect_Process() local 73 if (fx->lib == NULL) { in Effect_Process() 77 pthread_mutex_lock(&fx->lib->lock); in Effect_Process() 80 ret = (*fx->subItfe)->process(fx->subItfe, inBuffer, outBuffer); in Effect_Process() 81 pthread_mutex_unlock(&fx->lib->lock); in Effect_Process() 96 effect_entry_t *fx = (effect_entry_t *)self; in Effect_Command() local 98 if (fx->lib == NULL) { in Effect_Command() 102 pthread_mutex_lock(&fx->lib->lock); in Effect_Command() 105 ret = (*fx->subItfe)->command(fx->subItfe, cmdCode, cmdSize, pCmdData, replySize, pReplyData); in Effect_Command() 106 pthread_mutex_unlock(&fx->lib->lock); in Effect_Command() [all …]
|
/frameworks/native/opengl/tests/gl_jni/jni/ |
D | gl_code.cpp | 36 float fx = centerX - eyeX; in gluLookAt() local 41 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz); in gluLookAt() 42 fx *= rlf; in gluLookAt() 55 float sy = fz * upX - fx * upZ; in gluLookAt() 56 float sz = fx * upY - fy * upX; in gluLookAt() 60 float uy = sz * fx - sx * fz; in gluLookAt() 61 float uz = sx * fy - sy * fx; in gluLookAt() 66 m[2] = -fx; in gluLookAt()
|
/frameworks/base/core/java/com/android/internal/graphics/cam/ |
D | CamUtils.java | 94 float fx = fy; in intFromLstar() local 101 float xT = cubeExceedEpsilon ? fx * fx * fx : (116f * fx - 16f) / kappa; in intFromLstar() 102 float zT = cubeExceedEpsilon ? fz * fz * fz : (116f * fx - 16f) / kappa; in intFromLstar()
|
/frameworks/native/opengl/tests/tritex/ |
D | tritex.cpp | 42 float fx = centerX - eyeX; in gluLookAt() local 47 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz); in gluLookAt() 48 fx *= rlf; in gluLookAt() 61 float sy = fz * upX - fx * upZ; in gluLookAt() 62 float sz = fx * upY - fy * upX; in gluLookAt() 66 float uy = sz * fx - sx * fz; in gluLookAt() 67 float uz = sx * fy - sy * fx; in gluLookAt() 72 m[2] = -fx; in gluLookAt()
|
/frameworks/av/media/extractors/mp3/ |
D | XINGSeeker.cpp | 54 float fx; in getOffsetForTime() local 56 fx = 0.0f; in getOffsetForTime() 58 fx = 256.0f; in getOffsetForTime() 72 fx = fa + (fb-fa)*(percent-a); in getOffsetForTime() 74 fx = percent * 2.56f; in getOffsetForTime() 77 *pos = (int)((1.0f/256.0f)*fx*mSizeBytes) + mFirstFramePos; in getOffsetForTime()
|
/frameworks/native/opengl/tests/gl_basic/ |
D | gl_basic.cpp | 47 float fx = centerX - eyeX; in gluLookAt() local 52 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz); in gluLookAt() 53 fx *= rlf; in gluLookAt() 66 float sy = fz * upX - fx * upZ; in gluLookAt() 67 float sz = fx * upY - fy * upX; in gluLookAt() 71 float uy = sz * fx - sx * fz; in gluLookAt() 72 float uz = sx * fy - sy * fx; in gluLookAt() 77 m[2] = -fx; in gluLookAt()
|
/frameworks/base/libs/hwui/utils/ |
D | Color.cpp | 301 float fx = fy + (v[1] * 0.002f); in toXyz() local 303 float X = fx > D ? fx * fx * fx : (1.0f / B) * (fx - C); in toXyz() 319 float fx = X > A ? pow(X, 1.0f / 3.0f) : B * X + C; in fromXyz() local 324 float a = 500.0f * (fx - fy); in fromXyz()
|
/frameworks/av/services/audiopolicy/service/ |
D | AudioPolicyEffects.cpp | 129 sp<AudioEffect> fx = new AudioEffect(attributionSource); in addInputEffects() local 130 fx->set(NULL, &effect->mUuid, -1, 0, 0, audioSession, input); in addInputEffects() 131 status_t status = fx->initCheck(); in addInputEffects() 139 fx->setParameter(effect->mParams[j]); in addInputEffects() 143 sessionDesc->mEffects.add(fx); in addInputEffects() 281 sp<AudioEffect> fx = new AudioEffect(attributionSource); in addOutputSessionEffects() local 282 fx->set(NULL, &effect->mUuid, 0, 0, 0, audioSession, output); in addOutputSessionEffects() 283 status_t status = fx->initCheck(); in addOutputSessionEffects() 292 procDesc->mEffects.add(fx); in addOutputSessionEffects() 984 sp<AudioEffect> fx = new AudioEffect(attributionSource); in initDefaultDeviceEffects() local [all …]
|
/frameworks/base/opengl/java/android/opengl/ |
D | Matrix.java | 705 float fx = centerX - eyeX; in setLookAtM() local 710 float rlf = 1.0f / Matrix.length(fx, fy, fz); in setLookAtM() 711 fx *= rlf; in setLookAtM() 717 float sy = fz * upX - fx * upZ; in setLookAtM() 718 float sz = fx * upY - fy * upX; in setLookAtM() 728 float uy = sz * fx - sx * fz; in setLookAtM() 729 float uz = sx * fy - sy * fx; in setLookAtM() 733 rm[rmOffset + 2] = -fx; in setLookAtM()
|
/frameworks/av/media/libeffects/preprocessing/ |
D | PreProcessing.cpp | 74 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); 887 int Session_ReleaseEffect(preproc_session_t* session, preproc_effect_t* fx) { in Session_ReleaseEffect() argument 888 ALOGW_IF(Effect_Release(fx) != 0, " Effect_Release() failed for proc ID %d", fx->procId); in Session_ReleaseEffect() [all …]
|
/frameworks/base/services/core/java/com/android/server/audio/ |
D | SoundEffectsHelper.java | 372 int fx; in loadSoundAssets() local 376 fx = field.getInt(null); in loadSoundAssets() 381 int currentParserCount = parserCounter.getOrDefault(fx, 0) + 1; in loadSoundAssets() 382 parserCounter.put(fx, currentParserCount); in loadSoundAssets() 386 mEffects[fx] = findOrAddResourceByFileName(file); in loadSoundAssets()
|
/frameworks/base/libs/hwui/jni/ |
D | Movie.cpp | 65 jfloat fx, jfloat fy, jlong paintHandle) { in movie_draw() argument 78 c->drawBitmap(*wrapper, fx, fy, p); in movie_draw()
|
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | BitmapShader_Delegate.java | 203 private int getColor(float fx, float fy) { in getColor() argument 204 int x = getCoordinate(Math.round(fx), mImage.getWidth(), mTileModeX); in getColor()
|
/frameworks/base/core/java/com/android/internal/graphics/ |
D | ColorUtils.java | 521 final double fx = a / 500 + fy; 524 double tmp = Math.pow(fx, 3); 525 final double xr = tmp > XYZ_EPSILON ? tmp : (116 * fx - 16) / XYZ_KAPPA;
|
/frameworks/base/graphics/java/android/graphics/ |
D | ColorSpace.java | 1936 float fx = fy + (v[1] * 0.002f); in toXyz() local 1938 float X = fx > D ? fx * fx * fx : (1.0f / B) * (fx - C); in toXyz() 1955 float fx = X > A ? (float) Math.pow(X, 1.0 / 3.0) : B * X + C; in fromXyz() local 1960 float a = 500.0f * (fx - fy); in fromXyz()
|
/frameworks/base/core/java/android/os/ |
D | VibrationEffect.java | 509 float fx = (expX - 1f) / (expX + 1f); in scale() local 511 return MathUtils.constrain(a * fx, 0f, 1f); in scale()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | ContrastColorUtil.java | 863 final double fx = a / 500 + fy; 866 double tmp = Math.pow(fx, 3); 867 final double xr = tmp > XYZ_EPSILON ? tmp : (116 * fx - 16) / XYZ_KAPPA;
|
/frameworks/base/media/java/android/media/audiofx/ |
D | AudioEffect.java | 565 AudioEffect fx = new AudioEffect( in isEffectSupportedForDevice() local 568 fx.release(); in isEffectSupportedForDevice()
|