Searched refs:fy (Results 1 - 25 of 152) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGRadialGradientElement.idl31 readonly attribute SVGAnimatedLength fy;
H A DSVGRadialGradientElement.h43 SVGAnimatedLength* fy() const { return m_fy.get(); } function in class:blink::FINAL
/external/skia/src/effects/gradients/
H A DSkRadialGradient.cpp86 SkFixed fy = SkScalarToFixed(sfy) >> 1; local
91 fy = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1);
92 fy *= fy;
95 unsigned fi = (xx * xx + fy) >> (14 + 16 - kSQRT_TABLE_BITS);
105 unsigned fi = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1);
109 fy += dy;
118 void shadeSpan16_radial(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, argument
122 const SkFixed dist = SkFloatToFixed(sk_float_sqrt(fx*fx + fy*f
132 shadeSpan16_radial_mirror(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, uint16_t* SK_RESTRICT dstC, const uint16_t* SK_RESTRICT cache, int toggle, int count) argument
138 shadeSpan16_radial_repeat(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, uint16_t* SK_RESTRICT dstC, const uint16_t* SK_RESTRICT cache, int toggle, int count) argument
270 radial_completely_pinned(int fx, int dx, int fy, int dy) argument
284 no_need_for_radial_pin(int fx, int dx, int fy, int dy, int count) argument
324 SkFixed fy = SkScalarToFixed(sfy) >> 1; local
378 shadeSpan_radial(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
392 shadeSpan_radial_mirror(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
398 shadeSpan_radial_repeat(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_matrixProcs_neon.cpp49 // TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
123 #define TILEY_PROCF(fy, max) SkClampMax((fy) >> 16, max)
127 #define TILEY_PROCF_NEON4(fy, max) sbpsm_clamp_tile4(fy, max)
129 #define TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
131 #define TILEY_LOW_BITS_NEON4(fy, max) sbpsm_clamp_tile4_low_bits(fy)
[all...]
H A DSkBitmapProcState_matrix_neon.h122 SkFractionalInt fy = SkScalarToFractionalInt(srcPt.fY); local
144 // same for fy
145 ybase = vdupq_n_s32(SkFractionalIntToFixed(fy));
146 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy), ybase, 1);
147 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy+dy), ybase, 2);
148 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy+dy+dy), ybase, 3);
171 fy += dy8;
177 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
179 fx += dx; fy += dy;
305 const SkFixed fy local
369 SkFixed fy = SkScalarToFixed(srcPt.fY) - (oneY >> 1); local
[all...]
/external/skia/src/opts/
H A DSkBitmapProcState_matrixProcs_neon.cpp49 // TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
123 #define TILEY_PROCF(fy, max) SkClampMax((fy) >> 16, max)
127 #define TILEY_PROCF_NEON4(fy, max) sbpsm_clamp_tile4(fy, max)
129 #define TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
131 #define TILEY_LOW_BITS_NEON4(fy, max) sbpsm_clamp_tile4_low_bits(fy)
[all...]
H A DSkBitmapProcState_matrix_neon.h122 SkFractionalInt fy = SkScalarToFractionalInt(srcPt.fY); local
144 // same for fy
145 ybase = vdupq_n_s32(SkFractionalIntToFixed(fy));
146 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy), ybase, 1);
147 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy+dy), ybase, 2);
148 ybase = vsetq_lane_s32(SkFractionalIntToFixed(fy+dy+dy+dy), ybase, 3);
171 fy += dy8;
177 *xy++ = (TILEY_PROCF(SkFractionalIntToFixed(fy), maxY) << 16) |
179 fx += dx; fy += dy;
305 const SkFixed fy local
369 SkFixed fy = SkScalarToFixed(srcPt.fY) - (oneY >> 1); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c185 float fy = flip * viewport->scale[1] * -1.0 + viewport->translate[1]; local
199 fy,
223 prescale.translate[1] = fh - 1 + fy * 2;
225 fy -= fh;
237 if (fy < 0) {
239 prescale.translate[1] -= fy;
242 prescale.translate[1] += fy;
244 prescale.scale[1] *= fh / (fh + fy);
245 fh += fy;
246 fy
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c185 float fy = flip * viewport->scale[1] * -1.0 + viewport->translate[1]; local
199 fy,
223 prescale.translate[1] = fh - 1 + fy * 2;
225 fy -= fh;
237 if (fy < 0) {
239 prescale.translate[1] -= fy;
242 prescale.translate[1] += fy;
244 prescale.scale[1] *= fh / (fh + fy);
245 fh += fy;
246 fy
[all...]
/external/e2fsprogs/resize/
H A Dtest-resize20 $E2FSCK -fy $FS
26 $E2FSCK -fy $FS
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkRadialGradient.cpp86 SkFixed fy = SkScalarToFixed(sfy) >> 1; local
91 fy = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1);
92 fy *= fy;
95 unsigned fi = (xx * xx + fy) >> (14 + 16 - kSQRT_TABLE_BITS);
105 unsigned fi = SkPin32(fy, -0xFFFF >> 1, 0xFFFF >> 1);
109 fy += dy;
118 void shadeSpan16_radial(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, argument
122 const SkFixed dist = SkFloatToFixed(sk_float_sqrt(fx*fx + fy*f
132 shadeSpan16_radial_mirror(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, uint16_t* SK_RESTRICT dstC, const uint16_t* SK_RESTRICT cache, int toggle, int count) argument
138 shadeSpan16_radial_repeat(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, uint16_t* SK_RESTRICT dstC, const uint16_t* SK_RESTRICT cache, int toggle, int count) argument
282 radial_completely_pinned(int fx, int dx, int fy, int dy) argument
296 no_need_for_radial_pin(int fx, int dx, int fy, int dy, int count) argument
336 SkFixed fy = SkScalarToFixed(sfy) >> 1; local
390 shadeSpan_radial(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
404 shadeSpan_radial_mirror(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
410 shadeSpan_radial_repeat(SkScalar fx, SkScalar dx, SkScalar fy, SkScalar dy, SkPMColor* SK_RESTRICT dstC, const SkPMColor* SK_RESTRICT cache, int count, int toggle) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_shaderproc.h39 SkFixed fy = SkScalarToFixed(pt.fY) - (s.fFilterOneY >> 1); local
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
H A DSkBitmapProcState_matrixProcs.cpp53 #define TILEY_PROCF(fy, max) SkClampMax((fy) >> 16, max)
55 #define TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
63 static unsigned Y(const SkBitmapProcState&, SkFixed fy, int max) { argument
64 return SkClampMax(fy >> 16, max);
90 #define TILEY_PROCF(fy, max) SK_USHIFT16(((fy) & 0xFFFF) * ((max) + 1))
92 #define TILEY_LOW_BITS(fy, max) ((((fy)
99 Y(const SkBitmapProcState&, SkFixed fy, int max) argument
133 Y(const SkBitmapProcState& s, SkFixed fy, int max) argument
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_ListCtrl.cpp100 FX_FLOAT fy = 0.0f - m_fTopSpace; local
104 fy = pChild->GetWindowRect().bottom - m_fItemSpace;
122 pChild->Move(CPDF_Rect(fLeft, fy-fItemHeight, fWidth - fRight, fy), TRUE, FALSE);
123 fy -= fItemHeight;
124 fy -= m_fItemSpace;
129 fy += m_fItemSpace;
131 fy -= m_fBottomSpace;
138 m_rcContent.bottom = fy;
/external/skia/src/core/
H A DSkBitmapProcState_shaderproc.h39 SkFixed fy = SkScalarToFixed(pt.fY) - (s.fFilterOneY >> 1); local
42 subY = TILEY_LOW_BITS(fy, maxY);
43 int y0 = TILEY_PROCF(fy, maxY);
44 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
H A DSkBitmapProcState_matrixProcs.cpp53 #define TILEY_PROCF(fy, max) SkClampMax((fy) >> 16, max)
55 #define TILEY_LOW_BITS(fy, max) (((fy) >> 12) & 0xF)
63 static unsigned Y(const SkBitmapProcState&, SkFixed fy, int max) { argument
64 return SkClampMax(fy >> 16, max);
90 #define TILEY_PROCF(fy, max) SK_USHIFT16(((fy) & 0xFFFF) * ((max) + 1))
92 #define TILEY_LOW_BITS(fy, max) ((((fy)
99 Y(const SkBitmapProcState&, SkFixed fy, int max) argument
133 Y(const SkBitmapProcState& s, SkFixed fy, int max) argument
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_coords.cpp430 FX_FLOAT fx = a * dx, fy = b * dx;
431 return FXSYS_sqrt(fx * fx + fy * fy);
435 FX_FLOAT fx = a * dx, fy = b * dx;
436 return FXSYS_round(FXSYS_sqrt(fx * fx + fy * fy));
440 FX_FLOAT fx = c * dy, fy = d * dy;
441 return FXSYS_sqrt(fx * fx + fy * fy);
445 FX_FLOAT fx = c * dy, fy
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aalinetemp.h41 const GLfloat fy = (GLfloat) iy; local
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane);
62 line->span.array->rgba[i][RCOMP] = solve_plane_chan(fx, fy, line->rPlane);
63 line->span.array->rgba[i][GCOMP] = solve_plane_chan(fx, fy, line->gPlane);
64 line->span.array->rgba[i][BCOMP] = solve_plane_chan(fx, fy, line->bPlane);
65 line->span.array->rgba[i][ACOMP] = solve_plane_chan(fx, fy, line->aPlane);
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
85 const GLfloat invW = solve_plane_recip(fx, fy, line->wPlane);
88 attribArray[i][c] = solve_plane(fx, fy, lin
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aalinetemp.h41 const GLfloat fy = (GLfloat) iy; local
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane);
62 line->span.array->rgba[i][RCOMP] = solve_plane_chan(fx, fy, line->rPlane);
63 line->span.array->rgba[i][GCOMP] = solve_plane_chan(fx, fy, line->gPlane);
64 line->span.array->rgba[i][BCOMP] = solve_plane_chan(fx, fy, line->bPlane);
65 line->span.array->rgba[i][ACOMP] = solve_plane_chan(fx, fy, line->aPlane);
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
85 const GLfloat invW = solve_plane_recip(fx, fy, line->wPlane);
88 attribArray[i][c] = solve_plane(fx, fy, lin
[all...]
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGRadialGradient.cpp17 SVG_ATTRIBUTE(fy),
/external/chromium_org/third_party/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp32 int fy = f >> 2; local
33 if (state.fD && (ex - dx) * (fy - dy)
45 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp36 int fy = f >> 2; local
37 if ((ex - dx) * (fy - dy) == (ey - dy) * (fx - dx)) {
48 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
58 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
/external/skia/src/svg/
H A DSkSVGRadialGradient.cpp17 SVG_ATTRIBUTE(fy),
/external/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp32 int fy = f >> 2; local
33 if (state.fD && (ex - dx) * (fy - dy)
45 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp36 int fy = f >> 2; local
37 if ((ex - dx) * (fy - dy) == (ey - dy) * (fx - dx)) {
48 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
58 str += sprintf(str, " path.lineTo(%d, %d);\n", fx, fy);

Completed in 4140 milliseconds

1234567