Searched defs:vl (Results 1 - 5 of 5) sorted by path

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp517 LVM_INT32 vl = (LVM_INT32)pContext->prevLeftVolume << 16; local
518 LVM_INT32 incl = (((LVM_INT32)pContext->leftVolume << 16) - vl) / frameCount;
524 clamp16((LVM_INT32)((vl >> 16) * OutFrames16[2*i]) >> 12);
528 vl += incl;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp3163 uint32_t vl, vr, va; local
3166 vl = vr = va = 0;
3176 vl = vlr & 0xFFFF;
3179 if (vl > MAX_GAIN_INT) {
3180 ALOGV("Track left volume out of range: %04X", vl);
3181 vl = MAX_GAIN_INT;
3188 vl = (uint32_t)(v * vl) << 12;
3191 // vl and vr are now in 8.24 format
3202 if (chain != 0 && chain->setVolume_l(&vl,
3769 uint32_t vl = (uint32_t)(left * (1 << 24)); local
4817 uint32_t vl = vlr & 0xFFFF; local
[all...]
H A DAudioMixer.cpp802 int32_t vl = t->prevVolume[0]; local
808 // t, vlInc/65536.0f, vl/65536.0f, t->volume[0],
809 // (vl + vlInc*frameCount)/65536.0f, frameCount);
821 *out++ += (vl >> 16) * l;
824 vl += vlInc;
831 *out++ += (vl >> 16) * (*temp++ >> 12);
833 vl += vlInc;
837 t->prevVolume[0] = vl;
844 const int16_t vl = t->volume[0]; local
852 out[0] = mulAdd(l, vl, ou
879 int32_t vl = t->prevVolume[0]; local
924 int32_t vl = t->prevVolume[0]; local
967 int32_t vl = t->prevVolume[0]; local
995 const int16_t vl = t->volume[0]; local
1010 int32_t vl = t->prevVolume[0]; local
1033 const int16_t vl = t->volume[0]; local
1271 const int16_t vl = t.volume[0]; local
[all...]
H A DAudioResamplerCubic.cpp55 int32_t vl = mVolume[0]; local
81 out[outputIndex++] += vl * interp(&left, x);
121 int32_t vl = mVolume[0]; local
148 out[outputIndex++] += vl * sample;
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp2197 va_list vl; local
2198 va_start(vl, Argc);
2201 const char *ArgType = va_arg(vl, const char*);
2202 const char *ArgName = va_arg(vl, const char*);
2206 va_end(vl);

Completed in 85 milliseconds