Searched refs:vr (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/libs/audioflinger/ |
D | AudioResampler.cpp | 57 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr, 60 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr, 174 int32_t vr = mVolume[1]; in resampleStereo16() local 212 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction); in resampleStereo16() 228 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr, in resampleStereo16() 236 out[outputIndex++] += vr * Interp(in[inputIndex*2-1], in resampleStereo16() 270 int32_t vr = mVolume[1]; in resampleMono16() local 306 out[outputIndex++] += vr * sample; in resampleMono16() 322 AsmMono16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr, in resampleMono16() 331 out[outputIndex++] += vr * sample; in resampleMono16() [all …]
|
D | AudioResamplerCubic.cpp | 56 int32_t vr = mVolume[1]; in resampleStereo16() local 82 out[outputIndex++] += vr * interp(&right, x); in resampleStereo16() 121 int32_t vr = mVolume[1]; in resampleMono16() local 148 out[outputIndex++] += vr * sample; in resampleMono16()
|
D | AudioMixer.cpp | 510 int32_t vr = t->prevVolume[1]; in volumeRampStereo() local 521 *out++ += (vr >> 16) * (*temp++ >> 12); in volumeRampStereo() 523 vr += vrInc; in volumeRampStereo() 527 t->prevVolume[1] = vr; in volumeRampStereo() 538 int32_t vr = t->prevVolume[1]; in track__16BitsStereo() local 548 *out++ += (vr >> 16) * (int32_t) *in++; in track__16BitsStereo() 550 vr += vrInc; in track__16BitsStereo() 554 t->prevVolume[1] = vr; in track__16BitsStereo() 579 int32_t vr = t->prevVolume[1]; in track__16BitsMono() local 590 *out++ += (vr >> 16) * l; in track__16BitsMono() [all …]
|
/frameworks/base/core/java/android/text/method/ |
D | PasswordTransformationMethod.java | 48 ViewReference[] vr = sp.getSpans(0, sp.length(), in getTransformation() local 50 for (int i = 0; i < vr.length; i++) { in getTransformation() 51 sp.removeSpan(vr[i]); in getTransformation() 78 ViewReference[] vr = sp.getSpans(0, s.length(), in onTextChanged() local 80 if (vr.length == 0) { in onTextChanged() 92 for (int i = 0; v == null && i < vr.length; i++) { in onTextChanged() 93 v = vr[i].get(); in onTextChanged()
|
/frameworks/base/core/java/android/view/ |
D | WindowManagerImpl.java | 309 ViewRoot vr = (ViewRoot)vp; in getRootViewLayoutParameter() 313 if (mRoots[i] == vr) { in getRootViewLayoutParameter()
|
D | View.java | 7518 final ViewRoot vr = (ViewRoot)viewParent; in getLocationInWindow() local 7519 location[1] -= vr.mCurScrollY; in getLocationInWindow()
|