HomeSort by relevance Sort by last modified time
    Searched full:vscale (Results 1 - 25 of 36) sorted by null

1 2

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SpriteBatchRotationTest.java 33 float vScale = 1;
54 scale += vScale * Gdx.graphics.getDeltaTime();
56 vScale = -vScale;
60 vScale = -vScale;
StageTest.java 60 float vScale = 1;
193 scale += vScale * Gdx.graphics.getDeltaTime();
196 vScale = -vScale;
200 vScale = -vScale;
  /external/libvpx/libvpx/vpx_scale/
vpx_scale.h 23 unsigned int vscale,
  /external/skia/src/opts/
SkBlitMask_opts.h 42 uint16x8_t vscale, vmask256 = SkAlpha255To256_neon8(vmask); local
44 vscale = vsubw_u8(vdupq_n_u16(256),
47 vscale = vsubw_u8(vdupq_n_u16(256), vmask);
52 + SkAlphaMul_neon8(vdev.val[NEON_A], vscale);
54 + SkAlphaMul_neon8(vdev.val[NEON_R], vscale);
56 + SkAlphaMul_neon8(vdev.val[NEON_G], vscale);
58 + SkAlphaMul_neon8(vdev.val[NEON_B], vscale);
110 uint16x8_t vscale = vsubw_u8(vdupq_n_u16(256), vmask); local
113 vdevice = SkAlphaMulQ_neon8(vdevice, vscale);
SkBitmapProcState_filter_neon.h 63 uint16x4_t vx, vconst16_16, v16_x, tmp, vscale; local
88 vscale = vdup_n_u16(scale); // duplicate scale
90 tmp = vmul_u16(tmp, vscale); // multiply result by scale
SkColor_opts_neon.h 95 int16x8_t vscale = vdupq_n_s16(srcScale); local
103 vdiff *= vscale;
SkBlitRow_opts_arm_neon.cpp 110 uint16x8_t vmask_blue, vscale; local
113 vscale = vdupq_n_u16(SkAlpha255To256(alpha));
159 vres_r = vshrq_n_u16(vres_r * vscale, 8);
160 vres_g = vshrq_n_u16(vres_g * vscale, 8);
161 vres_b = vshrq_n_u16(vres_b * vscale, 8);
755 int16x8_t vscale = vdupq_n_s16(scale); // duplicate scale into neon reg local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
vpx_scale.h 23 unsigned int vscale,
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 34 int VScale;
221 * unsigned int vscale : Vertical scale factor numerator.
251 unsigned int vscale,
309 switch (vratio * 10 / vscale) {
396 if (vscale == 2 && vratio == 1) {
419 dest_band_height = source_band_height * vratio / vscale;
442 Scale1Dv(&temp_area[j], dest_pitch, vscale, source_band_height + 1,
465 * unsigned int vscale : Vertical scale factor numerator.
487 unsigned int vscale,
493 int dh = (vscale - 1 + src->y_height * vratio) / vscale
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
vpx_scale.c 33 int VScale;
220 * unsigned int vscale : Vertical scale factor numerator.
250 unsigned int vscale,
308 switch (vratio * 10 / vscale) {
395 if (vscale == 2 && vratio == 1) {
418 dest_band_height = source_band_height * vratio / vscale;
441 Scale1Dv(&temp_area[j], dest_pitch, vscale, source_band_height + 1,
464 * unsigned int vscale : Vertical scale factor numerator.
486 unsigned int vscale,
492 int dh = (vscale - 1 + src->y_height * vratio) / vscale
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
EmptyViewsOverlay.java 47 * @param vScale The {@link CanvasTransform} to use to transfer vertical layout coordinates
53 CanvasTransform vScale) {
57 mVScale = vScale;
OutlineOverlay.java 48 * @param vScale The {@link CanvasTransform} to use to transfer vertical layout
54 CanvasTransform vScale) {
58 mVScale = vScale;
HoverOverlay.java 67 * @param vScale The {@link CanvasTransform} to use to transfer vertical layout
70 public HoverOverlay(LayoutCanvas canvas, CanvasTransform hScale, CanvasTransform vScale) {
73 mVScale = vScale;
ImageOverlay.java 91 * @param vScale The vertical scale information.
93 public ImageOverlay(LayoutCanvas canvas, CanvasTransform hScale, CanvasTransform vScale) {
96 mVScale = vScale;
  /frameworks/base/core/java/android/widget/
AnalogClock.java 154 float vScale = 1.0f;
161 vScale = (float )heightSize / (float) mDialHeight;
164 float scale = Math.min(hScale, vScale);
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 150 float vScale = 1.0f;
157 vScale = (float )heightSize / (float) mDialHeight;
160 float scale = Math.min(hScale, vScale);
  /hardware/ti/omap4-aah/camera/
CameraHalUtilClasses.cpp 127 double hScale, vScale;
134 vScale = ( double ) height / ( double ) vRange;
136 top = ( mTop + vRange / 2 ) * vScale;
138 areaHeight = ( mBottom + vRange / 2 ) * vScale;
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 129 double hScale, vScale;
136 vScale = ( double ) height / ( double ) vRange;
138 top = ( mTop + vRange / 2 ) * vScale;
140 areaHeight = ( mBottom + vRange / 2 ) * vScale;
  /external/skia/src/pathops/
SkPathOpsOp.cpp 363 SkScalar vScale = (bitHeight - 2) / largerHeight;
365 scale.preScale(hScale, vScale);
368 larger.fTop *= vScale;
369 larger.fBottom *= vScale;
  /external/skia/tests/
PathOpsExtendedTest.cpp 182 SkScalar vScale = (bitHeight - 2) / largerHeight;
184 scale.preScale(hScale, vScale);
187 larger.fTop *= vScale;
188 larger.fBottom *= vScale;
  /external/opencv/cxcore/src/
cxdrawing.cpp 2203 int hscale, vscale, default_shear, italic_shear; local
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 264 Rational vScale;
541 measPtr->sc.vScale = scVScale(format->format,
547 (measPtr->sc.vScale
550 (double) measPtr->sc.vScale);
551 testPrintI(" VScale Best Display Frame: %s",
553 testPrintI(" VScale Best Source Crop: %s",
    [all...]
  /hardware/intel/img/psb_video/src/
psb_texture.c 144 double yScale, double uScale, double vScale,
    [all...]
  /external/opencv3/modules/imgproc/src/
drawing.cpp 2100 int hscale = cvRound(fontScale*XY_ONE), vscale = hscale; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
MeshBuilder.java 106 private float uOffset = 0f, uScale = 1f, vOffset = 0f, vScale = 1f;
360 vScale = v2 - v1;
368 uScale = vScale = 1f;
531 vertices.items[o + uvOffset + 1] = vOffset + vScale * vertices.items[o + uvOffset + 1];
    [all...]

Completed in 1020 milliseconds

1 2