Searched refs:halfWidth (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrConvolutionEffect.h27 int halfWidth,
33 halfWidth,
43 int halfWidth,
49 halfWidth,
94 int halfWidth,
101 int halfWidth,
25 Create(GrTexture* tex, Direction dir, int halfWidth, const float* kernel, bool useBounds, float bounds[2]) argument
41 CreateGaussian(GrTexture* tex, Direction dir, int halfWidth, float gaussianSigma, bool useBounds, float bounds[2]) argument
/external/skia/src/gpu/effects/
H A DGrConvolutionEffect.h27 int halfWidth,
33 halfWidth,
43 int halfWidth,
49 halfWidth,
94 int halfWidth,
101 int halfWidth,
25 Create(GrTexture* tex, Direction dir, int halfWidth, const float* kernel, bool useBounds, float bounds[2]) argument
41 CreateGaussian(GrTexture* tex, Direction dir, int halfWidth, float gaussianSigma, bool useBounds, float bounds[2]) argument
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aaline.c48 GLfloat halfWidth; /* half of line width */ member in struct:LineInfo
373 xLeft = x0 - line->halfWidth;
374 xRight = x1 + line->halfWidth;
376 yBot = y0 - 3.0F * line->halfWidth;
377 yTop = y0 + line->halfWidth;
380 yBot = y0 - line->halfWidth;
381 yTop = y0 + 3.0F * line->halfWidth;
385 xLeft = x1 - line->halfWidth;
386 xRight = x0 + line->halfWidth;
388 yBot = y1 - 3.0F * line->halfWidth;
[all...]
H A Ds_aalinetemp.h122 line.halfWidth = 0.5F * CLAMP(ctx->Line.Width,
132 line.xAdj = line.dx / line.len * line.halfWidth;
133 line.yAdj = line.dy / line.len * line.halfWidth;
/external/mesa3d/src/mesa/swrast/
H A Ds_aaline.c48 GLfloat halfWidth; /* half of line width */ member in struct:LineInfo
373 xLeft = x0 - line->halfWidth;
374 xRight = x1 + line->halfWidth;
376 yBot = y0 - 3.0F * line->halfWidth;
377 yTop = y0 + line->halfWidth;
380 yBot = y0 - line->halfWidth;
381 yTop = y0 + 3.0F * line->halfWidth;
385 xLeft = x1 - line->halfWidth;
386 xRight = x0 + line->halfWidth;
388 yBot = y1 - 3.0F * line->halfWidth;
[all...]
H A Ds_aalinetemp.h122 line.halfWidth = 0.5F * CLAMP(ctx->Line.Width,
132 line.xAdj = line.dx / line.len * line.halfWidth;
133 line.yAdj = line.dy / line.len * line.halfWidth;
/external/chromium_org/third_party/skia/src/effects/
H A DSkDashPathEffect.cpp158 SkScalar halfWidth, halfHeight; local
160 halfWidth = SkScalarHalf(clampedInitialDashLength);
163 halfWidth = SkScalarHalf(rec.getWidth());
168 results->fFirst.addRect(x - halfWidth, y - halfHeight,
169 x + halfWidth, y + halfHeight);
209 SkScalar halfWidth, halfHeight;
211 halfWidth = SkScalarHalf(temp);
214 halfWidth = SkScalarHalf(rec.getWidth());
217 results->fLast.addRect(x - halfWidth, y - halfHeight,
218 x + halfWidth,
[all...]
/external/skia/src/effects/
H A DSkDashPathEffect.cpp158 SkScalar halfWidth, halfHeight; local
160 halfWidth = SkScalarHalf(clampedInitialDashLength);
163 halfWidth = SkScalarHalf(rec.getWidth());
168 results->fFirst.addRect(x - halfWidth, y - halfHeight,
169 x + halfWidth, y + halfHeight);
209 SkScalar halfWidth, halfHeight;
211 halfWidth = SkScalarHalf(temp);
214 halfWidth = SkScalarHalf(rec.getWidth());
217 results->fLast.addRect(x - halfWidth, y - halfHeight,
218 x + halfWidth,
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSimpleCollisionComponent.java62 final float halfWidth = parentObject.width / 2.0f;
65 parentObject.getPosition().x = mHitPoint.x - halfWidth;
H A DInputGameInterface.java99 final float halfWidth = ButtonConstants.MOVEMENT_SLIDER_BAR_WIDTH / 2.0f;
100 final float center = ButtonConstants.MOVEMENT_SLIDER_X + halfWidth;
102 float magnitudeRamp = Math.abs(offset) > halfWidth ? 1.0f : (Math.abs(offset) / halfWidth);
H A DGameRenderer.java214 final float halfWidth = mHalfWidth;
222 x = (x - mCameraX) + halfWidth;
/external/chromium_org/content/shell/renderer/test_runner/
H A DWebTestThemeEngineMock.cpp331 int halfWidth = irect.width() / 2; local
345 left + halfWidth, bottom - quarterHeight,
372 left + halfWidth, top + quarterHeight,
384 int longOffset = halfWidth - gripLongIndent;
409 left + halfWidth, top + gripLongIndent,
410 left + halfWidth, bottom - gripLongIndent,
449 int longOffset = halfWidth - notchLongOffset;
546 halfWidth = irect.width() / 2;
555 irect.fLeft + halfWidth, irect.fBottom,
567 lirect.inset(halfWidth
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOvalRenderer.cpp530 SkScalar halfWidth = 0; local
533 halfWidth = SK_ScalarHalf;
535 halfWidth = SkScalarHalf(strokeWidth);
538 outerRadius += halfWidth;
540 innerRadius = radius - halfWidth;
1037 SkScalar halfWidth = 0; local
1040 halfWidth = SK_ScalarHalf;
1042 halfWidth = SkScalarHalf(scaledStroke.fX);
1046 innerRadius = xRadius - halfWidth;
1048 outerRadius += halfWidth;
[all...]
/external/skia/src/gpu/
H A DGrOvalRenderer.cpp530 SkScalar halfWidth = 0; local
533 halfWidth = SK_ScalarHalf;
535 halfWidth = SkScalarHalf(strokeWidth);
538 outerRadius += halfWidth;
540 innerRadius = radius - halfWidth;
1037 SkScalar halfWidth = 0; local
1040 halfWidth = SK_ScalarHalf;
1042 halfWidth = SkScalarHalf(scaledStroke.fX);
1046 innerRadius = xRadius - halfWidth;
1048 outerRadius += halfWidth;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp624 float halfWidth = size.width() / 2; local
627 endCorner.set(halfWidth, halfHeight);
629 endCorner.set(halfWidth, -halfHeight);
631 endCorner.set(-halfWidth, -halfHeight);
633 endCorner.set(-halfWidth, halfHeight);
642 secondPoint.set(halfWidth + endX, halfHeight - endY);
644 firstPoint.set(halfWidth - endX, halfHeight + endY);
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.c633 CF2_Fixed halfWidth = FT_MulFix( local
639 firstHintEdge->dsCoord = midpoint - halfWidth;
640 secondHintEdge->dsCoord = midpoint + halfWidth;
/external/freetype/src/cff/
H A Dcf2hints.c643 CF2_Fixed halfWidth = FT_MulFix( local
649 firstHintEdge->dsCoord = midpoint - halfWidth;
650 secondHintEdge->dsCoord = midpoint + halfWidth;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2hints.c634 CF2_Fixed halfWidth = FT_MulFix( local
640 firstHintEdge->dsCoord = midpoint - halfWidth;
641 secondHintEdge->dsCoord = midpoint + halfWidth;
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 578 milliseconds