HomeSort by relevance Sort by last modified time
    Searched defs:vr (Results 1 - 22 of 22) sorted by null

  /frameworks/base/services/audioflinger/
AudioResamplerCubic.cpp 56 int32_t vr = mVolume[1]; local
82 out[outputIndex++] += vr * interp(&right, x);
83 // out[outputIndex++] += vr * in[inputIndex*2];
121 int32_t vr = mVolume[1]; local
148 out[outputIndex++] += vr * sample;
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]; local
212 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
228 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
236 out[outputIndex++] += vr * Interp(in[inputIndex*2-1],
270 int32_t vr = mVolume[1]; local
306 out[outputIndex++] += vr * sample;
322 AsmMono16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
331 out[outputIndex++] += vr * sample
    [all...]
AudioMixer.cpp 582 int32_t vr = t->prevVolume[1]; local
601 *out++ += (vr >> 16) * r;
604 vr += vrInc;
611 *out++ += (vr >> 16) * (*temp++ >> 12);
613 vr += vrInc;
617 t->prevVolume[1] = vr;
624 const int16_t vr = t->volume[1]; local
633 out[1] = mulAdd(r, vr, out[1]);
643 out[1] = mulAdd(r, vr, out[1]);
659 int32_t vr = t->prevVolume[1] local
704 int32_t vr = t->prevVolume[1]; local
747 int32_t vr = t->prevVolume[1]; local
775 const int16_t vr = t->volume[1]; local
790 int32_t vr = t->prevVolume[1]; local
813 const int16_t vr = t->volume[1]; local
1051 const int16_t vr = t.volume[1]; local
    [all...]
AudioFlinger.cpp 1755 uint32_t vl, vr, va; local
2111 int32_t vr = ((int32_t)mRightVolShort << 16); local
2284 uint32_t vr = (uint32_t)(right * (1 << 24)); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
PKIXCertPathValidatorResultTest.java 188 PKIXCertPathValidatorResult vr = local
196 assertSame(ta, vr.getTrustAnchor());
218 PKIXCertPathValidatorResult vr = local
226 assertSame(pk, vr.getPublicKey());
251 PKIXCertPathValidatorResult vr = local
259 assertSame(pn, vr.getPolicyTree());
283 PKIXCertPathValidatorResult vr = local
291 assertNull(vr.getPolicyTree());
369 PKIXCertPathValidatorResult vr = local
375 assertNotNull(vr.toString())
396 PKIXCertPathValidatorResult vr = local
    [all...]
  /external/icu4c/layoutex/
playout.cpp 225 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
227 if (vr == NULL) {
231 return (const le_font *) vr->getFont();
237 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
239 if (vr == NULL) {
243 return vr->getDirection();
249 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
251 if (vr == NULL) {
255 return vr->getGlyphCount();
261 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run local
273 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
285 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
297 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
309 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
321 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; local
    [all...]
plruns.cpp 131 ValueRuns *vr = (ValueRuns *) valueRuns; local
133 delete vr;
139 const ValueRuns *vr = (const ValueRuns *) valueRuns; local
141 if (vr == NULL) {
145 return vr->getCount();
151 ValueRuns *vr = (ValueRuns *) valueRuns; local
153 if (vr != NULL) {
154 vr->reset();
161 const ValueRuns *vr = (const ValueRuns *) valueRuns; local
163 if (vr == NULL)
174 const ValueRuns *vr = (const ValueRuns *) valueRuns; local
187 const ValueRuns *vr = (const ValueRuns *) valueRuns; local
201 ValueRuns *vr = (ValueRuns *) valueRuns; local
    [all...]
  /external/libvpx/vpx_scale/leapster/
vpxscale_lf.c 545 int vr = si->VRatio; local
582 switch (vr * 10 / vs)
694 int vr = scale_vars->VRatio; local
699 int sh = (scale_vars->expanded_frame_height * vr + vs - 1) / vs;
710 if (vr == 3)
711 eh = (sh + 2) / 3 * 3 * vs / vr;
713 eh = (sh + 7) / 8 * 8 * vs / vr;
  /external/quake/quake/src/QW/client/
mathlib.c 101 vec3_t vr, vup, vf; local
107 PerpendicularVector( vr, dir );
108 CrossProduct( vr, vf, vup );
110 m[0][0] = vr[0];
111 m[1][0] = vr[1];
112 m[2][0] = vr[2];
r_misc.c 54 vrect_t vr; local
56 vr.x = vr.y = 0;
57 vr.width = vid.width;
58 vr.height = vid.height;
59 vr.pnext = NULL;
60 VID_Update (&vr);
75 vrect_t vr; local
90 vr.x = r_refdef.vrect.x;
91 vr.y = r_refdef.vrect.y
    [all...]
draw.c 855 vrect_t vr; local
862 vr.y = r_rectdesc.rect.y;
865 tileoffsety = vr.y % r_rectdesc.height;
869 vr.x = r_rectdesc.rect.x;
873 vr.height = r_rectdesc.height - tileoffsety;
875 vr.height = r_rectdesc.height;
877 if (vr.height > height)
878 vr.height = height;
880 tileoffsetx = vr.x % r_rectdesc.width;
885 vr.width = r_rectdesc.width - tileoffsetx
    [all...]
  /external/quake/quake/src/WinQuake/
mathlib.cpp 101 vec3_t vr, vup, vf; local
107 PerpendicularVector( vr, dir );
108 CrossProduct( vr, vf, vup );
110 m[0][0] = vr[0];
111 m[1][0] = vr[1];
112 m[2][0] = vr[2];
r_misc.cpp 52 vrect_t vr; local
54 vr.x = vr.y = 0;
55 vr.width = vid.width;
56 vr.height = vid.height;
57 vr.pnext = NULL;
58 VID_Update (&vr);
74 vrect_t vr; local
89 vr.x = r_refdef.vrect.x;
90 vr.y = r_refdef.vrect.y;
    [all...]
draw.cpp 744 vrect_t vr; local
751 vr.y = r_rectdesc.rect.y;
754 tileoffsety = vr.y % r_rectdesc.height;
758 vr.x = r_rectdesc.rect.x;
762 vr.height = r_rectdesc.height - tileoffsety;
764 vr.height = r_rectdesc.height;
766 if (vr.height > height)
767 vr.height = height;
769 tileoffsetx = vr.x % r_rectdesc.width;
774 vr.width = r_rectdesc.width - tileoffsetx
    [all...]
  /frameworks/base/core/java/android/text/method/
PasswordTransformationMethod.java 48 ViewReference[] vr = sp.getSpans(0, sp.length(), local
50 for (int i = 0; i < vr.length; i++) {
51 sp.removeSpan(vr[i]);
80 ViewReference[] vr = sp.getSpans(0, s.length(), local
82 if (vr.length == 0) {
94 for (int i = 0; v == null && i < vr.length; i++) {
95 v = vr[i].get();
  /external/libvpx/vpx_scale/generic/
vpxscale.c 703 int vr = si->VRatio; local
752 switch (vr * 30 / vs)
892 int vr = scale_vars->VRatio; local
897 int sh = (scale_vars->expanded_frame_height * vr + vs - 1) / vs;
908 if (vr == 3)
909 eh = (sh + 2) / 3 * 3 * vs / vr;
911 eh = (sh + 7) / 8 * 8 * vs / vr;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ax25.h 106 unsigned int vs, vr, va, vs_max; member in struct:ax25_info_struct
  /external/webkit/WebCore/rendering/
RenderView.cpp 260 IntRect vr = viewRect(); local
261 IntRect r = intersection(ur, vr);
265 r.move(-vr.x(), -vr.y());
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 494 LVM_INT32 vr = (LVM_INT32)pContext->prevRightVolume << 16; local
495 LVM_INT32 incr = (((LVM_INT32)pContext->rightVolume << 16) - vr) / frameCount;
501 clamp16((LVM_INT32)((vr >> 16) * OutFrames16[2*i+1]) >> 12);
504 vr += incr;
    [all...]
  /external/libvpx/vp8/decoder/x86/
onyxdxv.c 112 int vr; member in struct:t_ximage_codec
217 int hs, hr, vs, vr; local
253 Scale2Ratio(common->vert_scale, &vr, &vs);
461 newh = vs * tab->this_buffer.y_height / vr;
465 if (tab->hs != hs || tab->hr != hr || tab->vs != vs || tab->vr != vr)
472 neww, newh, SCALE_TO_FIT, hs, hr, vs, vr);
477 ch = vs * common->Height / vr;
  /external/libvpx/vp8/encoder/
firstpass.c 2523 int hr, hs, vr, vs; local
    [all...]
  /frameworks/base/core/java/android/view/
View.java 7864 final ViewRoot vr = (ViewRoot)viewParent; local
    [all...]

Completed in 971 milliseconds