Home
last modified time | relevance | path

Searched refs:cy (Results 1 – 25 of 507) sorted by relevance

12345678910>>...21

/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
Dplurals.txt428 cy 0.0 cilo. 0.0 peint
429 cy 0.00 cilo. 0.00 peint
430 cy 0.000 cilo. 0.000 peint
431 cy 0.001 cilo. 0.001 peint
432 cy 0.002 cilo. 0.002 peint
433 cy 0.003 cilo. 0.003 peint
434 cy 0.004 cilo. 0.004 peint
435 cy 0.006 cilo. 0.006 peint
436 cy 0.01 cilo. 0.01 peint
437 cy 0.010 cilo. 0.010 peint
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/format/
Dplurals.txt428 cy 0.0 cilo. 0.0 peint
429 cy 0.00 cilo. 0.00 peint
430 cy 0.000 cilo. 0.000 peint
431 cy 0.001 cilo. 0.001 peint
432 cy 0.002 cilo. 0.002 peint
433 cy 0.003 cilo. 0.003 peint
434 cy 0.004 cilo. 0.004 peint
435 cy 0.006 cilo. 0.006 peint
436 cy 0.01 cilo. 0.01 peint
437 cy 0.010 cilo. 0.010 peint
[all …]
/third_party/skia/gm/
Dinversepaths.cpp21 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) { in generate_square() argument
22 return SkPath::Rect(SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w)); in generate_square()
25 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) { in generate_rect_line() argument
26 return SkPath::Rect(SkRect::MakeXYWH(cx - l / 2, cy, l, 0)); in generate_rect_line()
29 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) { in generate_circle() argument
30 return SkPath::Circle(cx, cy, d/2, SkPathDirection::kCW); in generate_circle()
33 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) { in generate_line() argument
34 return SkPath::Line({cx - l / 2, cy}, {cx + l / 2, cy}); in generate_line()
81 SkScalar cy = slideHeight / 2 + slideBoundary; variable
122 SkPath path = paths[pathIndex](cx, cy, size);
Dbackdrop.cpp27 static sk_sp<SkShader> make_shader(SkScalar cx, SkScalar cy, SkScalar rad) { in make_shader() argument
37 return SkGradientShader::MakeSweep(cx, cy, colors, pos, count); in make_shader()
44 const SkScalar cx = 128, cy = 128, rad = 100; in do_draw() local
46 p.setShader(make_shader(cx, cy, rad)); in do_draw()
48 canvas->drawCircle(cx, cy, rad, p); in do_draw()
52 const SkRect r = {cx-50, cy-50, cx+50, cy+50}; in do_draw()
67 canvas->drawCircle(cx, cy, 30, p); in do_draw()
Dcrbug_996140.cpp34 SkScalar cy = 720-6.76f; variable
67 SkRect boundingBox = SkRect::MakeLTRB(cx - radius, cy - radius, cx + radius, cy + radius);
/third_party/ffmpeg/libavcodec/
Diirfilter.c41 float *cy; member
111 c->cy[i] = (-p[i][0] * p[order][0] + -p[i][1] * p[order][1]) / in butterworth_init_coeffs()
151 c->cy[0] = (-1.0 + (sin_w0 / 2.0)) / a0; in biquad_init_coeffs()
152 c->cy[1] = (2.0 * cos_w0) / a0; in biquad_init_coeffs()
176 !(c->cy = av_malloc (sizeof(c->cy[0]) * order))) in ff_iir_filter_init_coeffs()
213 c->cy[0] * s->x[i0] + \
214 c->cy[1] * s->x[i1] + \
215 c->cy[2] * s->x[i2] + \
216 c->cy[3] * s->x[i3]; \
247 in += c->cy[j] * s->x[j]; \
[all …]
Dsanm.c1065 static int opcode_0xf7(SANMVideoContext *ctx, int cx, int cy, int block_size, ptrdiff_t pitch) in opcode_0xf7() argument
1067 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch; in opcode_0xf7()
1099 static int opcode_0xf8(SANMVideoContext *ctx, int cx, int cy, int block_size, ptrdiff_t pitch) in opcode_0xf8() argument
1101 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch; in opcode_0xf8()
1127 static int good_mvec(SANMVideoContext *ctx, int cx, int cy, int mx, int my, in good_mvec() argument
1130 int start_pos = cx + mx + (cy + my) * ctx->pitch; in good_mvec()
1138 cx + mx, cy + my, cx, cy, block_size); in good_mvec()
1143 static int codec2subblock(SANMVideoContext *ctx, int cx, int cy, int blk_size) in codec2subblock() argument
1158 if (good_mvec(ctx, cx, cy, mx, my, blk_size)) { in codec2subblock()
1159 copy_block(ctx->frm0 + cx + ctx->pitch * cy, in codec2subblock()
[all …]
Dcavs.c121 memcpy(&h->top_border_y[h->mbx * 16], h->cy + 15 * h->l_stride, 16); in ff_cavs_filter()
125 h->left_border_y[i * 2 + 1] = *(h->cy + 15 + (i * 2 + 0) * h->l_stride); in ff_cavs_filter()
126 h->left_border_y[i * 2 + 2] = *(h->cy + 15 + (i * 2 + 1) * h->l_stride); in ff_cavs_filter()
153 h->cdsp.cavs_filter_lv(h->cy, h->l_stride, alpha, beta, tc, bs[0], bs[1]); in ff_cavs_filter()
161 … h->cdsp.cavs_filter_lv(h->cy + 8, h->l_stride, alpha, beta, tc, bs[2], bs[3]); in ff_cavs_filter()
162 … h->cdsp.cavs_filter_lh(h->cy + 8 * h->l_stride, h->l_stride, alpha, beta, tc, bs[6], bs[7]); in ff_cavs_filter()
167 h->cdsp.cavs_filter_lh(h->cy, h->l_stride, alpha, beta, tc, bs[4], bs[5]); in ff_cavs_filter()
206 h->intern_border_y[i + 1] = *(h->cy + 7 + i * h->l_stride); in ff_cavs_load_intra_pred_luma()
221 memcpy(&top[1], h->cy + 7 * h->l_stride, 16); in ff_cavs_load_intra_pred_luma()
230 h->intern_border_y[i + 9] = *(h->cy + 7 + (i + 8) * h->l_stride); in ff_cavs_load_intra_pred_luma()
[all …]
/third_party/ffmpeg/libavcodec/mips/
Diirfilter_mips.c64 float *cy; member
80 float in = *src0 * c->gain + s->x[0] * c->cy[0] + s->x[1] * c->cy[1]; in iir_filter_flt_mips()
97 float *cy = c->cy; in iir_filter_flt_mips() local
162 [gain]"f"(gain), [x]"r"(x), [cy]"r"(cy), in iir_filter_flt_mips()
187 in += c->cy[j] * s->x[j]; in iir_filter_flt_mips()
/third_party/skia/include/effects/
DSkGradientShader.h210 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy,
215 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, in MakeSweep() argument
218 return MakeSweep(cx, cy, colors, pos, count, SkTileMode::kClamp, 0, 360, flags, in MakeSweep()
221 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, in MakeSweep() argument
223 return MakeSweep(cx, cy, colors, pos, count, 0, nullptr); in MakeSweep()
242 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy,
248 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, in MakeSweep() argument
252 return MakeSweep(cx, cy, colors, std::move(colorSpace), pos, count, in MakeSweep()
255 static sk_sp<SkShader> MakeSweep(SkScalar cx, SkScalar cy, in MakeSweep() argument
258 return MakeSweep(cx, cy, colors, std::move(colorSpace), pos, count, 0, nullptr); in MakeSweep()
/third_party/cups-filters/cupsfilters/
Dimage-colorspace.c179 int cc, cm, cy; /* Calibrated CMY values */ in cupsImageCMYKToCMY() local
196 cy = cupsImageMatrix[2][0][c] + in cupsImageCMYKToCMY()
214 if (cy < 0) in cupsImageCMYKToCMY()
216 else if (cy > 255) in cupsImageCMYKToCMY()
219 *out++ = cupsImageDensity[cy]; in cupsImageCMYKToCMY()
266 int cc, cm, cy; /* Calibrated CMY values */ in cupsImageCMYKToCMYK() local
283 cy = (cupsImageMatrix[2][0][c] + in cupsImageCMYKToCMYK()
301 if (cy < 0) in cupsImageCMYKToCMYK()
303 else if (cy > 255) in cupsImageCMYKToCMYK()
306 *out++ = cupsImageDensity[cy]; in cupsImageCMYKToCMYK()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_deshake.c69 …{ "y", "set y for the rectangular search area", OFFSET(cy), AV_OPT_TYPE_INT, {.i64=-1}, -1, I…
121 uint8_t *src2, int cx, int cy, int stride, in find_block_motion() argument
129 #define CMP(i, j) deshake->sad(src1 + cy * stride + cx, stride,\ in find_block_motion()
136 diff = CMP(cx - x, cy - y); in find_block_motion()
148 diff = CMP(cx - x, cy - y); in find_block_motion()
166 diff = CMP(cx - x, cy - y); in find_block_motion()
214 static double block_angle(int x, int y, int cx, int cy, IntMotionVector *shift) in block_angle() argument
218 a1 = atan2(y - cy, x - cx); in block_angle()
219 a2 = atan2(y - cy + shift->y, x - cx + shift->x); in block_angle()
368 deshake->cx, deshake->cy, deshake->cw, deshake->ch, in init()
[all …]
Dcolorspacedsp_template.c63 int cy = yuv2rgb_coeffs[0][0][0]; in fn() local
73 av_assert2(yuv2rgb_coeffs[1][0][0] == cy && yuv2rgb_coeffs[2][0][0] == cy); in fn()
89 rgb0[x << SS_W] = av_clip_int16((y00 * cy + crv * v + rnd) >> sh); in fn()
91 rgb0[2 * x + 1] = av_clip_int16((y01 * cy + crv * v + rnd) >> sh); in fn()
93 rgb0[2 * x + rgb_stride] = av_clip_int16((y10 * cy + crv * v + rnd) >> sh); in fn()
94 rgb0[2 * x + rgb_stride + 1] = av_clip_int16((y11 * cy + crv * v + rnd) >> sh); in fn()
98 rgb1[x << SS_W] = av_clip_int16((y00 * cy + cgu * u + in fn()
101 rgb1[2 * x + 1] = av_clip_int16((y01 * cy + cgu * u + in fn()
104 rgb1[2 * x + rgb_stride] = av_clip_int16((y10 * cy + cgu * u + in fn()
106 rgb1[2 * x + rgb_stride + 1] = av_clip_int16((y11 * cy + cgu * u + in fn()
[all …]
Dvf_ciescope.c70 void (*filter)(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y);
1125 double cx, cy, cz, jr, jg, jb, jmax; in fill_in_tongue() local
1132 upvp_to_xy(up, vp, &cx, &cy); in fill_in_tongue()
1133 cz = 1.0 - (cx + cy); in fill_in_tongue()
1138 uv_to_xy(u, v, &cx, &cy); in fill_in_tongue()
1139 cz = 1.0 - (cx + cy); in fill_in_tongue()
1142 cy = 1.0 - ((double) y) / (h - 1); in fill_in_tongue()
1143 cz = 1.0 - (cx + cy); in fill_in_tongue()
1148 xyz_to_rgb(m, cx, cy, cz, &jr, &jg, &jb); in fill_in_tongue()
1243 static void filter_rgb48(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y) in filter_rgb48() argument
[all …]
/third_party/mesa3d/src/mesa/math/
Dm_debug_clip.c83 const GLfloat cy = from[1]; in ref_cliptest_points4() local
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points4()
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points4()
107 vProj[i][1] = cy * oow; in ref_cliptest_points4()
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; in ref_cliptest_points3() local
143 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points3()
144 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points3()
177 const GLfloat cx = from[0], cy = from[1]; in ref_cliptest_points2() local
181 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points2()
182 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points2()
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dgenpng.c388 double cy = (arg->y1+arg->y2)/2; in square_check_line() local
391 if (square_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in square_check_line()
398 if (wx > 0 && wy > 0 && square_check(x, y, cx-wx, cy-wy, cx+wx, cy+wy)) in square_check_line()
466 const double cy = (y1 + y2)/2; in circle_check() local
471 y = (y - cy)/dy; in circle_check()
497 double cy = (arg->y1+arg->y2)/2; in circle_check_line() local
500 if (circle_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in circle_check_line()
507 if (wx > 0 && wy > 0 && circle_check(x, y, cx-wx, cy-wy, cx+wx, cy+wy)) in circle_check_line()
/third_party/ffmpeg/libswscale/
Dyuv2rgb.c810 int64_t cy = 1 << 16; in ff_yuv2rgb_c_init_tables() local
815 cy = (cy * 255) / 219; in ff_yuv2rgb_c_init_tables()
824 cy = (cy * contrast) >> 16; in ff_yuv2rgb_c_init_tables()
833 c->yCoeff = roundToInt16(cy * (1 << 13)) * 0x0001000100010001ULL; in ff_yuv2rgb_c_init_tables()
840 c->yuv2rgb_y_coeff = (int16_t)roundToInt16(cy * (1 << 13)); in ff_yuv2rgb_c_init_tables()
848 crv = ((crv * (1 << 16)) + 0x8000) / FFMAX(cy, 1); in ff_yuv2rgb_c_init_tables()
849 cbu = ((cbu * (1 << 16)) + 0x8000) / FFMAX(cy, 1); in ff_yuv2rgb_c_init_tables()
850 cgu = ((cgu * (1 << 16)) + 0x8000) / FFMAX(cy, 1); in ff_yuv2rgb_c_init_tables()
851 cgv = ((cgv * (1 << 16)) + 0x8000) / FFMAX(cy, 1); in ff_yuv2rgb_c_init_tables()
863 yb = -(384 << 16) - YUVRGB_TABLE_LUMA_HEADROOM*cy - oy; in ff_yuv2rgb_c_init_tables()
[all …]
/third_party/skia/tests/
DPathOpsSimplifyDegenerateThreadedTest.cpp19 int cy = state.fC >> 2; in testSimplifyDegeneratesMain() local
37 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyDegeneratesMain()
46 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy); in testSimplifyDegeneratesMain()
76 int cy = c >> 2; in DEF_TEST() local
77 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax); in DEF_TEST()
DPathOpsSimplifyTrianglesThreadedTest.cpp20 int cy = state.fC >> 2; in testSimplifyTrianglesMain() local
40 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy)); in testSimplifyTrianglesMain()
49 pathStr.appendf(" path.lineTo(%d, %d);\n", cx, cy); in testSimplifyTrianglesMain()
82 int cy = c >> 2; in DEF_TEST() local
83 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) { in DEF_TEST()
DVkDrawableTest.cpp251 for (int cy = 0; cy < DEV_H && !failureFound; ++cy) { in draw_drawable_test() local
253 SkPMColor canvasPixel = canvasPixels[cy * DEV_W + cx]; in draw_drawable_test()
254 if (cy < DEV_H / 2) { in draw_drawable_test()
266 cx, cy, canvasPixel, expectedPixel); in draw_drawable_test()
/third_party/skia/src/pathops/
DSkPathOpsConic.cpp143 double cx, cy, cz; in subDivide() local
146 cy = fPts[2].fY; in subDivide()
150 cy = conic_eval_numerator(&fPts[0].fY, fWeight, t2); in subDivide()
154 cy = fPts[0].fY; in subDivide()
158 double by = 2 * dy - (ay + cy) / 2; in subDivide()
163 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}} in subDivide()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/VE/
DVEInstrInfo.td118 let cy = 1;
125 let cy = 0;
140 { let cy = 1; let cz = 1; let hasSideEffects = 0; }
150 { let cy = 0; let cz = 1; let hasSideEffects = 0; }
158 { let cy = 0; let cz = 0; let sz = 0; let hasSideEffects = 0; }
166 let cy = 1;
193 let cy = 1;
226 let cy = 0, sy = 0, cz = 1 in {
235 let cx = 0, cy = 0, sy = 0, cz = 1 in {
243 let cx = 0, cx2 = 0, bpf = 0 /* NONE */, cf = 15 /* AT */, cy = 0, sy = 0,
[all …]
/third_party/skia/src/core/
DSkMaskFilter.cpp82 int cy = center.y(); in draw_nine_clipped() local
88 m.fBounds.fBottom = cy; in draw_nine_clipped()
98 m.fBounds.fBottom = cy; in draw_nine_clipped()
108 m.fBounds.fTop = cy + 1; in draw_nine_clipped()
118 m.fBounds.fTop = cy + 1; in draw_nine_clipped()
128 outerR.top() + cy - mask.fBounds.top(), in draw_nine_clipped()
130 outerR.bottom() + (cy + 1 - mask.fBounds.bottom())); in draw_nine_clipped()
173 mask.fBounds.top() + cy); in draw_nine_clipped()
184 mask.fBounds.top() + cy); in draw_nine_clipped()
/third_party/skia/third_party/etc1/
Detc1.cpp543 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image() local
544 etc1_byte* q = block + (cy * 4) * 3; in etc1_encode_image()
545 const etc1_byte* p = pIn + pixelSize * x + stride * (y + cy); in etc1_encode_image()
596 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_decode_image() local
597 const etc1_byte* q = block + (cy * 4) * 3; in etc1_decode_image()
598 etc1_byte* p = pOut + pixelSize * x + stride * (y + cy); in etc1_decode_image()
/third_party/ffmpeg/libavdevice/
Ddshow_common.c93 dshowdebug(" InputSize %ld\t%ld\n", caps->InputSize.cx, caps->InputSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
94 dshowdebug(" MinCroppingSize %ld\t%ld\n", caps->MinCroppingSize.cx, caps->MinCroppingSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
95 dshowdebug(" MaxCroppingSize %ld\t%ld\n", caps->MaxCroppingSize.cx, caps->MaxCroppingSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
100 dshowdebug(" MinOutputSize %ld\t%ld\n", caps->MinOutputSize.cx, caps->MinOutputSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()
101 dshowdebug(" MaxOutputSize %ld\t%ld\n", caps->MaxOutputSize.cx, caps->MaxOutputSize.cy); in ff_print_VIDEO_STREAM_CONFIG_CAPS()

12345678910>>...21