Searched refs:dy (Results 151 - 175 of 771) sorted by relevance

1234567891011>>

/external/skia/src/effects/
H A DSkBlurDrawLooper.cpp21 SkScalar dx, SkScalar dy, uint32_t flags) {
22 this->init(sigma, dx, dy, color, flags);
54 void SkBlurDrawLooper::init(SkScalar sigma, SkScalar dx, SkScalar dy, argument
58 fDy = dy;
164 str->append(" dy: ");
20 SkBlurDrawLooper(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy, uint32_t flags) argument
/external/skia/src/pathops/
H A DSkLineParameters.h34 if (dy() != 0) {
40 if (dy() != 0) {
93 if (dy() != 0) {
171 double dy() const { function in class:SkLineParameters
/external/chromium_org/third_party/skia/src/core/
H A DSkDistanceFieldGen.cpp111 float dy = direction.fY; local
113 if (SkScalarNearlyZero(dx) || SkScalarNearlyZero(dy)) {
119 dy = SkScalarAbs(dy);
120 if (dx < dy) {
121 SkTSwap(dx, dy);
124 // a1 = 0.5*dy/dx is the smaller fractional area chopped off by the edge
126 float a1num = 0.5f*dy;
134 distance = 0.5f*(dx + dy) - SkScalarSqrt(2.0f*dx*dy*alph
[all...]
/external/skia/src/core/
H A DSkDistanceFieldGen.cpp111 float dy = direction.fY; local
113 if (SkScalarNearlyZero(dx) || SkScalarNearlyZero(dy)) {
119 dy = SkScalarAbs(dy);
120 if (dx < dy) {
121 SkTSwap(dx, dy);
124 // a1 = 0.5*dy/dx is the smaller fractional area chopped off by the edge
126 float a1num = 0.5f*dy;
134 distance = 0.5f*(dx + dy) - SkScalarSqrt(2.0f*dx*dy*alph
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGGlyphRefElement.cpp114 void SVGGlyphRefElement::setDy(float dy) argument
118 m_dy = dy;
/external/chromium_org/third_party/skia/bench/
H A DVertBench.cpp44 const SkScalar dy = SkIntToScalar(H) / COL; local
65 yy += dy;
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkSweepGradient.cpp107 SkScalar dy, fy = srcPt.fY; local
114 dy = SkFixedToScalar(storage[1]);
118 dy = matrix.getSkewY();
124 fy += dy;
149 SkScalar dy, fy = srcPt.fY; local
156 dy = SkFixedToScalar(storage[1]);
160 dy = matrix.getSkewY();
168 fy += dy;
/external/chromium_org/ui/gfx/android/
H A Dscroller.h36 float dy,
44 float dy,
/external/chromium_org/ui/views/animation/
H A Dscroll_animator.cc73 float dy = GetDelta(velocity_y_, a_y, last_t_, t); local
75 delegate_->OnScroll(dx, dy);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPoint.java40 public final void offset(int dx, int dy) { argument
42 realPoint.y += dy;
H A DShadowPointF.java42 public final void offset(float dx, float dy) { argument
44 realPointF.y += dy;
/external/skia/bench/
H A DVertBench.cpp44 const SkScalar dy = SkIntToScalar(H) / COL; local
65 yy += dy;
/external/skia/src/effects/gradients/
H A DSkSweepGradient.cpp96 SkScalar dy, fy = srcPt.fY; local
103 dy = SkFixedToScalar(storage[1]);
107 dy = matrix.getSkewY();
113 fy += dy;
138 SkScalar dy, fy = srcPt.fY; local
145 dy = SkFixedToScalar(storage[1]);
149 dy = matrix.getSkewY();
157 fy += dy;
/external/chromium_org/content/common/input/
H A Dsynthetic_web_input_event_builders.cc58 float dy,
64 result.deltaY = dy;
67 if (dy)
68 result.wheelTicksY = dy > 0.0f ? 1.0f : -1.0f;
112 float dy,
117 result.data.scrollUpdate.deltaY = dy;
57 Build(float dx, float dy, int modifiers, bool precise) argument
110 BuildScrollUpdate( float dx, float dy, int modifiers) argument
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.h91 void move(float dx, float dy) { m_location.move(dx, dy); } argument
148 void inflateY(float dy) argument
150 m_location.setY(m_location.y() - dy);
151 m_size.setHeight(m_size.height() + dy + dy);
H A DIntRect.h88 void move(int dx, int dy) { m_location.move(dx, dy); } argument
141 void inflateY(int dy) argument
143 m_location.setY(m_location.y() - dy);
144 m_size.setHeight(m_size.height() + dy + dy);
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurDrawLooper.cpp21 SkScalar dx, SkScalar dy, uint32_t flags) {
22 this->init(sigma, dx, dy, color, flags);
54 void SkBlurDrawLooper::init(SkScalar sigma, SkScalar dx, SkScalar dy, argument
58 fDy = dy;
82 const SkScalar dy = buffer.readScalar(); local
84 return Create(color, sigma, dx, dy, flags);
174 str->append(" dy: ");
20 SkBlurDrawLooper(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy, uint32_t flags) argument
/external/fonttools/Lib/fontTools/misc/
H A DarrayTools.py76 def offsetRect(rect, dx, dy):
77 """Offset the rectangle by dx, dy."""
79 return xMin+dx, yMin+dy, xMax+dx, yMax+dy
81 def insetRect(rect, dx, dy):
82 """Inset the rectangle by dx, dy on all sides."""
84 return xMin+dx, yMin+dy, xMax-dx, yMax-dy
/external/fonttools/Lib/fontTools/pens/
H A DpointInsidePen.py100 dy = y2 - y1
101 t = (y - y1) / dy
121 dy = y1
122 cy = (y2 - dy) * 3.0
124 ay = y4 - dy - cy - by
125 solutions = sorted(solveCubic(ay, by, cy, dy - y))
/external/fonttools/Tools/fontTools/misc/
H A DarrayTools.py76 def offsetRect(rect, dx, dy):
77 """Offset the rectangle by dx, dy."""
79 return xMin+dx, yMin+dy, xMax+dx, yMax+dy
81 def insetRect(rect, dx, dy):
82 """Inset the rectangle by dx, dy on all sides."""
84 return xMin+dx, yMin+dy, xMax-dx, yMax-dy
/external/fonttools/Tools/fontTools/pens/
H A DpointInsidePen.py100 dy = y2 - y1
101 t = (y - y1) / dy
121 dy = y1
122 cy = (y2 - dy) * 3.0
124 ay = y4 - dy - cy - by
125 solutions = sorted(solveCubic(ay, by, cy, dy - y))
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dimage.c58 comp->dy = cmptparms[compno].dy;
122 l_comp_y0 = opj_int_ceildiv(l_y0, (OPJ_INT32)l_img_comp->dy);
124 l_comp_y1 = opj_int_ceildiv(l_y1, (OPJ_INT32)l_img_comp->dy);
228 comp->dy = cmptparms[compno].dy;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv04_surface.c196 int dx, int dy, int sx, int sy,
249 PUSH_DATA (push, (y + dy) << 16 | (x + dx));
251 PUSH_DATA (push, (y + dy) << 16 | (x + dx));
277 int dx, int dy, int sx, int sy,
287 unsigned dst_offset = dst->offset + dy * dst->pitch + dx * dst->cpp;
365 int dx, int dy, int sx, int sy,
383 memcpy(dp + get_dst(dst, dx + x, dy + y),
393 int dx, int dy, int sx, int sy,
400 dy = get_format_blocksy(dst->format, dy);
193 nv04_surface_copy_swizzle(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
274 nv04_surface_copy_m2mf(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
362 nv04_surface_copy_cpu(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
390 nv04_surface_copy(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
424 nv04_surface_fill(struct gl_context *ctx, struct nouveau_surface *dst, unsigned mask, unsigned value, int dx, int dy, int w, int h) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_surface.c196 int dx, int dy, int sx, int sy,
249 PUSH_DATA (push, (y + dy) << 16 | (x + dx));
251 PUSH_DATA (push, (y + dy) << 16 | (x + dx));
277 int dx, int dy, int sx, int sy,
287 unsigned dst_offset = dst->offset + dy * dst->pitch + dx * dst->cpp;
365 int dx, int dy, int sx, int sy,
383 memcpy(dp + get_dst(dst, dx + x, dy + y),
393 int dx, int dy, int sx, int sy,
400 dy = get_format_blocksy(dst->format, dy);
193 nv04_surface_copy_swizzle(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
274 nv04_surface_copy_m2mf(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
362 nv04_surface_copy_cpu(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
390 nv04_surface_copy(struct gl_context *ctx, struct nouveau_surface *dst, struct nouveau_surface *src, int dx, int dy, int sx, int sy, int w, int h) argument
424 nv04_surface_fill(struct gl_context *ctx, struct nouveau_surface *dst, unsigned mask, unsigned value, int dx, int dy, int w, int h) argument
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkPoint.h221 static void Offset(SkPoint points[], int count, SkScalar dx, SkScalar dy) { argument
223 points[i].offset(dx, dy);
227 void offset(SkScalar dx, SkScalar dy) { argument
229 fY += dy;
241 static bool CanNormalize(SkScalar dx, SkScalar dy) { argument
243 return (dx*dx + dy*dy) > (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
459 SkScalar dy = fY - pt.fY; local
460 return dx * dx + dy * dy;
[all...]

Completed in 851 milliseconds

1234567891011>>