Home
last modified time | relevance | path

Searched refs:y0 (Results 1 – 25 of 461) sorted by relevance

12345678910>>...19

/third_party/gstreamer/gstplugins_good/gst/smpte/
Dpaint.c34 gint x0, gint y0, gint c0, gint x1, gint y1, gint c1) in gst_smpte_paint_vbox() argument
40 height = y1 - y0; in gst_smpte_paint_vbox()
45 dest = dest + y0 * stride + x0; in gst_smpte_paint_vbox()
57 gint x0, gint y0, gint c0, gint x1, gint y1, gint c1) in gst_smpte_paint_hbox() argument
63 height = y1 - y0; in gst_smpte_paint_hbox()
68 dest = dest + y0 * stride + x0; in gst_smpte_paint_hbox()
131 #define PREPARE_3D_LINE(x0,y0,z0,x1,y1,z1,dxabs,dyabs,dzabs,sdx,sdy,sdz,xr,yr,zr,px,py,pz)\ argument
135 dy = y1 - y0; \
147 py = y0; \
153 gint x0, gint y0, gint c0, in gst_smpte_paint_triangle_linear() argument
[all …]
/third_party/typescript/tests/baselines/reference/
DshorthandPropertyAssignmentsInDestructuring.types190 >(function() { let y0: number; ({ y0 = 5 } = { y0: 1 })}) : () => void
191 >function() { let y0: number; ({ y0 = 5 } = { y0: 1 })} : () => void
193 let y0: number;
194 >y0 : number
196 ({ y0 = 5 } = { y0: 1 })
197 >({ y0 = 5 } = { y0: 1 }) : { y0?: number; }
198 >{ y0 = 5 } = { y0: 1 } : { y0?: number; }
199 >{ y0 = 5 } : { y0?: number; }
200 >y0 : number
202 >{ y0: 1 } : { y0?: number; }
[all …]
DshorthandPropertyAssignmentsInDestructuring_ES6.types190 >(function() { let y0: number; ({ y0 = 5 } = { y0: 1 })}) : () => void
191 >function() { let y0: number; ({ y0 = 5 } = { y0: 1 })} : () => void
193 let y0: number;
194 >y0 : number
196 ({ y0 = 5 } = { y0: 1 })
197 >({ y0 = 5 } = { y0: 1 }) : { y0?: number; }
198 >{ y0 = 5 } = { y0: 1 } : { y0?: number; }
199 >{ y0 = 5 } : { y0?: number; }
200 >y0 : number
202 >{ y0: 1 } : { y0?: number; }
[all …]
DshorthandPropertyAssignmentsInDestructuring_ES6.js60 let y0: number;
61 ({ y0 = 5 } = { y0: 1 })
65 let y0: number;
66 ({ y0:y0 = 5 } = { y0: 1 })
168 let y0;
169 ({ y0 = 5 } = { y0: 1 });
172 let y0;
173 ({ y0: y0 = 5 } = { y0: 1 });
DshorthandPropertyAssignmentsInDestructuring.js60 let y0: number;
61 ({ y0 = 5 } = { y0: 1 })
65 let y0: number;
66 ({ y0:y0 = 5 } = { y0: 1 })
187 var y0;
188 (_a = { y0: 1 }.y0, y0 = _a === void 0 ? 5 : _a); property
192 var y0;
193 (_a = { y0: 1 }.y0, y0 = _a === void 0 ? 5 : _a); property
DshorthandPropertyAssignmentsInDestructuring.symbols105 let y0: number;
106 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 58, 4))
108 ({ y0 = 5 } = { y0: 1 })
109 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 59, 3))
110 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 59, 16))
115 let y0: number;
116 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 63, 4))
118 ({ y0:y0 = 5 } = { y0: 1 })
119 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 64, 3))
120 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring.ts, 63, 4))
[all …]
DshorthandPropertyAssignmentsInDestructuring_ES6.symbols105 let y0: number;
106 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 58, 4))
108 ({ y0 = 5 } = { y0: 1 })
109 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 59, 3))
110 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 59, 16))
115 let y0: number;
116 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 63, 4))
118 ({ y0:y0 = 5 } = { y0: 1 })
119 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 64, 3))
120 >y0 : Symbol(y0, Decl(shorthandPropertyAssignmentsInDestructuring_ES6.ts, 63, 4))
[all …]
/third_party/skia/src/core/
DSkEdge.cpp38 SkFDot6 x0, y0, x1, y1; in setLine() local
43 y0 = SkScalarRoundToFDot6(p0.fY, shift); in setLine()
49 y0 = int(p0.fY * scale); in setLine()
57 if (y0 > y1) { in setLine()
60 swap(y0, y1); in setLine()
64 int top = SkFDot6Round(y0); in setLine()
76 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); in setLine()
77 const SkFDot6 dy = SkEdge_Compute_DY(top, y0); in setLine()
94 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1) in updateLine() argument
100 y0 >>= 10; in updateLine()
[all …]
DSkEdge.h19 #define SkEdge_Compute_DY(top, y0) (SkLeftShift(top, 6) + 32 - (y0)) argument
91 SkFDot6 x0, y0, x1, y1; in setLine() local
96 y0 = SkScalarRoundToFDot6(p0.fY, shift); in setLine()
102 y0 = int(p0.fY * scale); in setLine()
110 if (y0 > y1) { in setLine()
113 swap(y0, y1); in setLine()
117 int top = SkFDot6Round(y0); in setLine()
125 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); in setLine()
126 const SkFDot6 dy = SkEdge_Compute_DY(top, y0); in setLine()
DSkAnalyticEdge.cpp235 SkFixed y0 = SnapY(SkFDot6ToFixed(SkScalarRoundToFDot6(p0.fY, accuracy)) >> accuracy); in setLine() local
241 SkFixed y0 = SnapY(SkFDot6ToFixed(SkScalarToFDot6(p0.fY * multiplier)) >> accuracy); in setLine() local
248 if (y0 > y1) { in setLine()
251 swap(y0, y1); in setLine()
256 SkFDot6 dy = SkFixedToFDot6(y1 - y0); in setLine()
267 fY = y0; in setLine()
268 fUpperY = y0; in setLine()
283 bool SkAnalyticEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1, SkFixed slope) { in updateLine() argument
292 if (y0 > y1) { in updateLine()
295 swap(y0, y1); in updateLine()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_rect.h41 int y0, y1; member
53 a->y1 < b->y0 || in u_rect_test_intersection()
54 b->y1 < a->y0 || in u_rect_test_intersection()
56 a->y1 < a->y0 || in u_rect_test_intersection()
58 b->y1 < b->y0)); in u_rect_test_intersection()
71 if (b->y0 < a->y0) b->y0 = a->y0; in u_rect_find_intersection()
79 return (r->x1 - r->x0) * (r->y1 - r->y0); in u_rect_area()
94 b->x0 = b->y0 = 0; in u_rect_possible_intersection()
105 d->y0 = MIN2(a->y0, b->y0); in u_rect_union()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DDevice.cpp209 clearRect.clip(scissorRect.x0, scissorRect.y0, scissorRect.x1, scissorRect.y1); in clearColor()
229 clearRect.clip(scissorRect.x0, scissorRect.y0, scissorRect.x1, scissorRect.y1); in clearDepth()
232 depthBuffer->clearDepth(z, clearRect.x0, clearRect.y0, clearRect.width(), clearRect.height()); in clearDepth()
246 clearRect.clip(scissorRect.x0, scissorRect.y0, scissorRect.x1, scissorRect.y1); in clearStencil()
249 …stencilBuffer->clearStencil(stencil, mask, clearRect.x0, clearRect.y0, clearRect.width(), clearRec… in clearStencil()
468 flipY = (sourceRect->y0 < sourceRect->y1) ^ (destRect->y0 < destRect->y1); in stretchRect()
473 flipY = (sourceRect->y0 > sourceRect->y1); in stretchRect()
478 flipY = (destRect->y0 > destRect->y1); in stretchRect()
488 sRect.y0 = sourceRect->y0; in stretchRect()
497 if(sRect.y0 > sRect.y1) in stretchRect()
[all …]
/third_party/mesa3d/src/util/format/
Du_format_yuv.c496 uint8_t y0, y1, u, v; in util_format_uyvy_unpack_rgba_float() local
502 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_float()
506 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_float()
519 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_float()
523 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_float()
544 uint8_t y0, y1, u, v; in util_format_uyvy_unpack_rgba_8unorm() local
550 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_8unorm()
554 util_format_yuv_to_rgb_8unorm(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_8unorm()
567 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_8unorm()
571 util_format_yuv_to_rgb_8unorm(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_8unorm()
[all …]
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
DLinearGradient.java14 public LinearGradient(float x0, float y0, float x1, float y1, int[] colors, in LinearGradient() argument
18 (c, p, t, m) -> nMakeLinear(x0, y0, x1, y1, c, p, t, m)); in LinearGradient()
21 public LinearGradient(float x0, float y0, float x1, float y1, int[] colors, in LinearGradient() argument
23 this(x0, y0, x1, y1, colors, pos, tm, null); in LinearGradient()
26 public LinearGradient(float x0, float y0, float x1, float y1, float[] colors, in LinearGradient() argument
30 (c, p, t, m) -> nMakeLinear(x0, y0, x1, y1, c, p, t, m)); in LinearGradient()
33 public LinearGradient(float x0, float y0, float x1, float y1, float[] colors, in LinearGradient() argument
35 this(x0, y0, x1, y1, colors, pos, tm, null); in LinearGradient()
38 private static native long nMakeLinear(float x0, float y0, float x1, float y1, in nMakeLinear() argument
DTwoPointConicalGradient.java14 public TwoPointConicalGradient(float x0, float y0, float r0, float x1, float y1, float r1, in TwoPointConicalGradient() argument
18 (c, p, t, m) -> nMakeTwoPointConical(x0, y0, r0, x1, y1, r1, c, p, t, m)); in TwoPointConicalGradient()
21 public TwoPointConicalGradient(float x0, float y0, float r0, float x1, float y1, float r1, in TwoPointConicalGradient() argument
24 this(x0, y0, r0, x1, y1, r1, colors, pos, tm, null); in TwoPointConicalGradient()
27 public TwoPointConicalGradient(float x0, float y0, float r0, float x1, float y1, float r1, in TwoPointConicalGradient() argument
31 (c, p, t, m) -> nMakeTwoPointConical(x0, y0, r0, x1, y1, r1, c, p, t, m)); in TwoPointConicalGradient()
34 public TwoPointConicalGradient(float x0, float y0, float r0, float x1, float y1, float r1, in TwoPointConicalGradient() argument
37 this(x0, y0, r0, x1, y1, r1, colors, pos, tm, null); in TwoPointConicalGradient()
40 private static native long nMakeTwoPointConical(float x0, float y0, float r0, in nMakeTwoPointConical() argument
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_1d_table.cpp88 real64 y0 = fTable [lower]; in SubDivide() local
91 real64 delta = (y1 - y0) / (real64) range; in SubDivide()
96 y0 += delta; in SubDivide()
98 fTable [j] = (real32) y0; in SubDivide()
161 real64 y0 = fTable [0]; in Expand16() local
164 real64 base = y0 * 65535.0 + 0.5; in Expand16()
165 real64 slope = (y1 - y0) * 65535.0; in Expand16()
183 y0 = y1; in Expand16()
186 base = y0 * 65535.0 + 0.5; in Expand16()
187 slope = (y1 - y0) * 65535.0; in Expand16()
/third_party/mesa3d/src/intel/isl/
Disl_tiled_memcpy.c232 uint32_t y0, uint32_t y1,
251 uint32_t y0, uint32_t y1, in linear_to_xtiled() argument
263 src += (ptrdiff_t)y0 * src_pitch; in linear_to_xtiled()
265 for (yo = y0 * xtile_width; yo < y1 * xtile_width; yo += xtile_width) { in linear_to_xtiled()
293 uint32_t y0, uint32_t y3, in linear_to_ytiled() argument
312 uint32_t y1 = MIN2(y3, ALIGN_UP(y0, 4)); in linear_to_ytiled()
328 src += (ptrdiff_t)y0 * src_pitch; in linear_to_ytiled()
330 if (y0 != y1) { in linear_to_ytiled()
331 for (yo = y0 * column_width; yo < y1 * column_width; yo += column_width) { in linear_to_ytiled()
415 uint32_t y0, uint32_t y1, in xtiled_to_linear() argument
[all …]
/third_party/typescript/tests/cases/compiler/
DshorthandPropertyAssignmentsInDestructuring_ES6.ts62 let y0: number; variable
63 ({ y0 = 5 } = { y0: 1 })
67 let y0: number; variable
68 ({ y0:y0 = 5 } = { y0: 1 })
DshorthandPropertyAssignmentsInDestructuring.ts62 let y0: number; variable
63 ({ y0 = 5 } = { y0: 1 })
67 let y0: number; variable
68 ({ y0:y0 = 5 } = { y0: 1 })
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_point.c123 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef() local
127 info->a0[slot][0] = 0.5 - (dadx * x0 + dady * y0); in texcoord_coef()
139 float y0 = info->v0[0][1] - setup->pixel_offset; in texcoord_coef() local
147 info->a0[slot][1] = 0.5 - (dadx * x0 + dady * y0); in texcoord_coef()
379 int x0, y0; in try_setup_point() local
386 y0 = subpixel_snap(v0[0][1] - pixel_offset) - fixed_width/2; in try_setup_point()
390 y[0] = y0; in try_setup_point()
391 y[1] = y0 + fixed_width; in try_setup_point()
394 bbox.y0 = (y[0] + adj) >> FIXED_ORDER; in try_setup_point()
412 const int y0 = subpixel_snap(v0[0][1]) - adj; in try_setup_point() local
[all …]
/third_party/python/Modules/_decimal/libmpdec/
Dbench.c58 color_point(mpd_t *x0, mpd_t *y0, long maxiter, mpd_context_t *ctx) in color_point() argument
79 mpd_add(y, y, y0, ctx); in color_point()
102 mpd_t *x0, *y0; in main() local
117 y0 = new_mpd(); in main()
119 mpd_set_string(y0, "0.333", &ctx); in main()
121 mpd_del(y0); in main()
127 color_point(x0, y0, iter, &ctx); in main()
133 mpd_del(y0); in main()
Dbench_full.c65 color_point(const mpd_t *x0, const mpd_t *y0, const long maxiter, mpd_context_t *ctx) in color_point() argument
92 mpd_add(y, y, y0, ctx); in color_point()
117 mpd_t *x0, *y0; in main() local
141 y0 = new_mpd(); in main()
149 mpd_copy(y0, sqrt_2, &ctx); in main()
154 points[i][j] = color_point(x0, y0, iter, &ctx); in main()
157 mpd_sub(y0, y0, ystep, &ctx); in main()
186 mpd_del(y0); in main()
/third_party/ffmpeg/libavcodec/
Dhevc_mvs.c42 void ff_hevc_set_neighbour_available(HEVCContext *s, int x0, int y0, in ff_hevc_set_neighbour_available() argument
47 int y0b = av_mod_uintp2(y0, s->ps.sps->log2_ctb_size); in ff_hevc_set_neighbour_available()
58 lc->na.cand_bottom_left = ((y0 + nPbH) >= lc->end_of_tiles_y) ? 0 : lc->na.cand_left; in ff_hevc_set_neighbour_available()
218 static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0, in temporal_luma_motion_vector() argument
241 y = y0 + nPbH; in temporal_luma_motion_vector()
244 (y0 >> s->ps.sps->log2_ctb_size) == (y >> s->ps.sps->log2_ctb_size) && in temporal_luma_motion_vector()
260 y = y0 + (nPbH >> 1); in temporal_luma_motion_vector()
277 z_scan_block_avail(s, x0, y0, x ## v, y ## v)
285 static void derive_spatial_merge_candidates(HEVCContext *s, int x0, int y0, in derive_spatial_merge_candidates() argument
305 const int yA1 = y0 + nPbH - 1; in derive_spatial_merge_candidates()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/openjpeg/
Dgstopenjpegdec.c422 gint x, y, y0, y1, w, c; in fill_frame_packed8_4() local
438 y0 = image->y0; in fill_frame_packed8_4()
440 GST_DEBUG_OBJECT (self, "yo=%d y1=%d", y0, y1); in fill_frame_packed8_4()
441 data_out += y0 * dstride; in fill_frame_packed8_4()
442 for (y = y0; y < y1; y++) { in fill_frame_packed8_4()
466 gint x, y, y0, y1, w, c; in fill_frame_packed16_4() local
484 y0 = image->y0; in fill_frame_packed16_4()
486 data_out += y0 * dstride; in fill_frame_packed16_4()
487 for (y = y0; y < y1; y++) { in fill_frame_packed16_4()
511 gint x, y, y0, y1, w, c; in fill_frame_packed8_3() local
[all …]
/third_party/mesa3d/src/intel/blorp/
Dblorp_clear.c306 unsigned *x0, unsigned *y0, in get_fast_clear_rect() argument
442 *y0 = ROUND_DOWN_TO(*y0, y_align) / y_scaledown; in get_fast_clear_rect()
452 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1) in blorp_fast_clear() argument
460 params.y0 = y0; in blorp_fast_clear()
468 &params.x0, &params.y0, &params.x1, &params.y1); in blorp_fast_clear()
515 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, in blorp_clear() argument
600 params.y0 = y0; in blorp_clear()
606 params.wm_inputs.bounds_rect.y0 = y0; in blorp_clear()
615 params.y0 += params.dst.tile_y_sa; in blorp_clear()
647 params.y0 += params.dst.tile_y_sa; in blorp_clear()
[all …]

12345678910>>...19