HomeSort by relevance Sort by last modified time
    Searched refs:gain (Results 101 - 125 of 263) sorted by null

1 2 3 45 6 7 8 91011

  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h 30 // shelf, where each band has frequency and gain controls, and the peaking
36 // Gain in millibel.
37 int32_t gain; member in struct:android::AudioEqualizer::BandConfig
93 // gain: 0
105 // Sets gain value. Actual change will only take place upon commit().
107 // band The band to set the gain for.
108 // millibel Gain value in millibel (1/100 of decibel).
111 // Gets gain of a certain band. This is always the last value set (or
113 // band The band to get the gain for.
114 // returns Gain value in millibel (1/100 of decibel)
    [all...]
  /hardware/invensense/60xx/mlsdk/mllite/
mlBiasNoMotion.c 156 long gain; local
182 gain = inv_obj->accel_lpf_gain * rate;
188 inv_q30_mult(((1L << 30) - gain), inv_obj->accel_lpf[kk]);
189 inv_obj->accel_lpf[kk] += inv_q30_mult(gain, accel[kk]);
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioBus.cpp 430 // If it is copying from the same bus and no need to change gain, just return.
443 // We don't want to suddenly change the gain from mixing one time slice to the next,
444 // so we "de-zipper" by slowly changing the gain each sample-frame until we've achieved the target gain.
446 // Take master bus gain into account as well as the targetGain.
450 float gain = static_cast<float>(m_isFirstTime ? totalDesiredGain : *lastMixGain); local
456 // If the gain is within epsilon of totalDesiredGain, we can skip dezippering.
459 float gainDiff = fabs(totalDesiredGain - gain);
461 // Number of frames to de-zipper before we are close enough to the target gain.
462 // FIXME: framesToDezipper could be smaller when target gain is close enough within this process loop
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_midi.c 451 EAS_I32 gain = ((EAS_I32) c << 8) | ((EAS_I32) pMIDIStream->d1 << 1); local
452 gain = (gain * gain) >> 15;
453 VMSetVolume(pSynth, (EAS_U16) gain);
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_midi.c 451 EAS_I32 gain = ((EAS_I32) c << 8) | ((EAS_I32) pMIDIStream->d1 << 1); local
452 gain = (gain * gain) >> 15;
453 VMSetVolume(pSynth, (EAS_U16) gain);
eas_wtsynth.c 56 static EAS_I32 WT_UpdateGain (S_SYNTH_VOICE *pVoice, S_WT_VOICE *pWTVoice, const S_ARTICULATION *pArt, S_SYNTH_CHANNEL *pChannel, EAS_I32 gain);
130 /* left and right gain values are needed only if stereo output */
360 pVoice->gain = 0;
418 wtConfig.gain = pVoice->gain;
519 intFrame.prevGain = pVoice->gain;
536 /* update the gain */
537 intFrame.frame.gainTarget = WT_UpdateGain(pVoice, pWTVoice, pArt, pChannel, pWTRegion->gain);
580 /* if the update interval has elapsed, then force the current gain to the next
581 * gain since we never actually reach the next gain when ramping -- we just ge
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_midi.c 451 EAS_I32 gain = ((EAS_I32) c << 8) | ((EAS_I32) pMIDIStream->d1 << 1); local
452 gain = (gain * gain) >> 15;
453 VMSetVolume(pSynth, (EAS_U16) gain);
eas_wtsynth.c 56 static EAS_I32 WT_UpdateGain (S_SYNTH_VOICE *pVoice, S_WT_VOICE *pWTVoice, const S_ARTICULATION *pArt, S_SYNTH_CHANNEL *pChannel, EAS_I32 gain);
130 /* left and right gain values are needed only if stereo output */
360 pVoice->gain = 0;
418 wtConfig.gain = pVoice->gain;
523 intFrame.prevGain = pVoice->gain;
540 /* update the gain */
541 intFrame.frame.gainTarget = WT_UpdateGain(pVoice, pWTVoice, pArt, pChannel, pWTRegion->gain);
586 /* if the update interval has elapsed, then force the current gain to the next
587 * gain since we never actually reach the next gain when ramping -- we just ge
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkMatrixConvolutionImageFilter.cpp 25 SkMatrixConvolutionImageFilter::SkMatrixConvolutionImageFilter(const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& target, TileMode tileMode, bool convolveAlpha, SkImageFilter* input)
28 fGain(gain),
257 SkScalar gain,
265 gain,
284 float gain() const { return fGain; } function in class:GrMatrixConvolutionEffect
297 SkScalar gain,
402 kFloat_GrSLType, "Gain");
409 const char* gain = builder->getUniformCStr(fGainUni); local
430 builder->fsCodeAppendf("\t\t%s = sum * %s + %s;\n", outputColor, gain, bias);
437 builder->fsCodeAppendf("\t\t%s.rgb = sum.rgb * %s + %s;\n", outputColor, gain, bias)
551 SkScalar gain = random->nextSScalar1(); local
    [all...]
  /external/skia/src/effects/
SkMatrixConvolutionImageFilter.cpp 25 SkMatrixConvolutionImageFilter::SkMatrixConvolutionImageFilter(const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& target, TileMode tileMode, bool convolveAlpha, SkImageFilter* input)
28 fGain(gain),
257 SkScalar gain,
265 gain,
284 float gain() const { return fGain; } function in class:GrMatrixConvolutionEffect
297 SkScalar gain,
402 kFloat_GrSLType, "Gain");
409 const char* gain = builder->getUniformCStr(fGainUni); local
430 builder->fsCodeAppendf("\t\t%s = sum * %s + %s;\n", outputColor, gain, bias);
437 builder->fsCodeAppendf("\t\t%s.rgb = sum.rgb * %s + %s;\n", outputColor, gain, bias)
551 SkScalar gain = random->nextSScalar1(); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorMusgrave.java 124 public final float gain; field in class:TextureGeneratorMusgrave.MusgraveData
134 gain = ((Number) tex.getFieldValue("mg_gain")).floatValue();
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_mmx.asm 56 psubw mm3, mm0 ;gain the sign back
96 psubw mm7, mm4;gain the sign back
137 psubw mm7, mm4;gain the sign back
178 psubw mm7, mm4;gain the sign back
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.h 145 // This function sets the kernel gain. NOTE: in most use cases, gain should
147 void SetKernelGain(double gain) {
148 kernel_gain_ = gain;
212 // Kernel gain and bias are typically multiplicative and additive factors to
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorDisplay.java 157 protected void onFocusChanged(boolean gain, int direction, Rect prev) {
158 //Calculator.log("focus " + gain + "; " + direction + "; " + prev);
159 if (!gain) {
  /bionic/libc/kernel/common/linux/
mt9t013.h 89 uint16_t gain; member in struct:mt9t013_exposure_gain
  /cts/suite/audio_quality/lib/src/audio/
AudioLocal.cpp 20 bool AudioLocal::prepare(AudioHardware::SamplingRate samplingRate, int gain, int /*mode*/)
23 // gain control not necessary in MobilePre as there is no control.
  /development/ndk/platforms/android-3/include/linux/
mt9t013.h 90 uint16_t gain; member in struct:mt9t013_exposure_gain
  /external/kernel-headers/original/linux/
mt9t013.h 131 uint16_t gain; member in struct:mt9t013_exposure_gain
  /external/speex/libspeex/
ltp.h 54 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack);
100 /** Forced pitch delay and gain */
124 /** Unquantize forced pitch delay and gain */
scal.c 236 float gain; local
241 gain = coef*sqrt(.1+st->curve[i]);
242 frame[2*i-1] = gain*x1;
243 frame[2*i] = gain*x2;
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_audio_acdb.h 54 uint16_t gain; member in struct:sidetone_cal
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_audio_acdb.h 54 uint16_t gain; member in struct:sidetone_cal
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
mt9t013.h 90 uint16_t gain; member in struct:mt9t013_exposure_gain
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
mt9t013.h 90 uint16_t gain; member in struct:mt9t013_exposure_gain
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
mt9t013.h 90 uint16_t gain; member in struct:mt9t013_exposure_gain

Completed in 596 milliseconds

1 2 3 45 6 7 8 91011