/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_rect.h | 41 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() [all...] |
/third_party/skia/src/core/ |
H A D | SkEdge.cpp | 38 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 >> in updateLine() 182 SkFDot6 x0, y0, x1, y1, x2, y2; setQuadraticWithoutUpdate() local 352 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; setCubicWithoutUpdate() local [all...] |
H A D | SkEdge.h | 18 // This correctly favors the lower-pixel when y0 is on a 1/2 pixel boundary 19 #define SkEdge_Compute_DY(top, y0) (SkLeftShift(top, 6) + 32 - (y0)) 91 SkFDot6 x0, y0, x1, y1; 96 y0 = SkScalarRoundToFDot6(p0.fY, shift); 102 y0 = int(p0.fY * scale); 110 if (y0 > y1) { 113 swap(y0, y1); 117 int top = SkFDot6Round(y0); 125 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); [all...] |
H A D | SkAnalyticEdge.cpp | 235 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) { 292 if (y0 > y1) { 295 swap(y0, y [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | shorthandPropertyAssignmentsInDestructuring_ES6.js | 60 let y0: number; 61 ({ y0 = 5 } = { y0: 1 }) property 65 let y0: number; 66 ({ y0:y0 = 5 } = { y0: 1 }) property 168 let y0;
169 ({ y0 = 5 } = { y0 property 173 ({ y0: y0 = 5 } = { y0: 1 }); global() property [all...] |
H A D | shorthandPropertyAssignmentsInDestructuring.js | 60 let y0: number; 61 ({ y0 = 5 } = { y0: 1 }) property 65 let y0: number; 66 ({ y0:y0 = 5 } = { y0: 1 }) property 187 var y0;
variable 188 (_a = { y0: 1 }.y0, y property 192 var y0; global() variable 193 (_a = { y0: 1 }.y0, y0 = _a === void 0 ? 5 : _a); global() property [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Device.cpp | 209 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(), clearRect.height()); 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 in stretchRect() [all...] |
/third_party/mesa3d/src/util/format/ |
H A D | u_format_yuv.c | 496 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, in util_format_uyvy_unpack_rgba_8unorm() 591 uint8_t y0, y1, u, v; util_format_uyvy_pack_rgba_float() local 595 uint8_t y0, y1, u0, u1, v0, v1, u, v; util_format_uyvy_pack_rgba_float() local 644 uint8_t y0, y1, u, v; util_format_uyvy_pack_rgba_8unorm() local 648 uint8_t y0, y1, u0, u1, v0, v1, u, v; util_format_uyvy_pack_rgba_8unorm() local 718 uint8_t y0, y1, u, v; util_format_yuyv_unpack_rgba_float() local 766 uint8_t y0, y1, u, v; util_format_yuyv_unpack_rgba_8unorm() local 813 uint8_t y0, y1, u, v; util_format_yuyv_pack_rgba_float() local 817 uint8_t y0, y1, u0, u1, v0, v1, u, v; util_format_yuyv_pack_rgba_float() local 866 uint8_t y0, y1, u, v; util_format_yuyv_pack_rgba_8unorm() local 870 uint8_t y0, y1, u0, u1, v0, v1, u, v; util_format_yuyv_pack_rgba_8unorm() local [all...] |
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/ |
H A D | LinearGradient.java | 14 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
|
H A D | TwoPointConicalGradient.java | 14 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/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_setup_point.c | 123 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 in try_setup_point() local [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_1d_table.cpp | 88 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. in Expand16() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | hevc_mvs.c | 43 void ff_hevc_set_neighbour_available(HEVCContext *s, int x0, int y0, in ff_hevc_set_neighbour_available() argument 48 int y0b = av_mod_uintp2(y0, s->ps.sps->log2_ctb_size); in ff_hevc_set_neighbour_available() 59 lc->na.cand_bottom_left = ((y0 + nPbH) >= lc->end_of_tiles_y) ? 0 : lc->na.cand_left; in ff_hevc_set_neighbour_available() 219 static int temporal_luma_motion_vector(HEVCContext *s, int x0, int y0, in temporal_luma_motion_vector() argument 242 y = y0 + nPbH; in temporal_luma_motion_vector() 245 (y0 >> s->ps.sps->log2_ctb_size) == (y >> s->ps.sps->log2_ctb_size) && in temporal_luma_motion_vector() 261 y = y0 + (nPbH >> 1); in temporal_luma_motion_vector() 278 z_scan_block_avail(s, x0, y0, x ## v, y ## v) 286 static void derive_spatial_merge_candidates(HEVCContext *s, int x0, int y0, in derive_spatial_merge_candidates() argument 306 const int yA1 = y0 in derive_spatial_merge_candidates() 480 ff_hevc_luma_mv_merge_mode(HEVCContext *s, int x0, int y0, int nPbW, int nPbH, int log2_cb_size, int part_idx, int merge_idx, MvField *mv) ff_hevc_luma_mv_merge_mode() argument 583 ff_hevc_luma_mv_mvp_mode(HEVCContext *s, int x0, int y0, int nPbW, int nPbH, int log2_cb_size, int part_idx, int merge_idx, MvField *mv, int mvp_lx_flag, int LX) ff_hevc_luma_mv_mvp_mode() argument [all...] |
H A D | hevcpred_template.c | 30 static av_always_inline void FUNC(intra_pred)(HEVCContext *s, int x0, int y0, in intra_pred() argument 38 MVF(PU(x0 + ((x) * (1 << hshift))), PU(y0 + ((y) * (1 << vshift)))) in intra_pred() 83 int y = y0 >> vshift; in intra_pred() 85 int y_tb = (y0 >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask; in intra_pred() 86 int spin = c_idx && !size_in_tbs_v && ((2 * y0) & (1 << s->ps.sps->log2_min_tb_size)); in intra_pred() 113 int bottom_left_size = (FFMIN(y0 + 2 * size_in_luma_v, s->ps.sps->height) - in intra_pred() 114 (y0 + size_in_luma_v)) >> vshift; in intra_pred() 122 int on_pu_edge_y = !av_mod_uintp2(y0, s->ps.sps->log2_min_pu_size); in intra_pred() 127 int y_bottom_pu = PU(y0 + size_in_luma_v); in intra_pred() 135 int y_left_pu = PU(y0); in intra_pred() [all...] |
/third_party/mesa3d/src/intel/isl/ |
H A D | isl_tiled_memcpy.c | 220 * Each row from y0 to y1 is copied in three parts: [x0,x1), [x1,x2), [x2,x3). 226 * address to copy from, though copying begins at (x0, y0). 232 uint32_t y0, uint32_t y1, 251 uint32_t y0, uint32_t y1, in linear_to_xtiled() 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() 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 ! in linear_to_ytiled() 250 linear_to_xtiled(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t src_pitch, uint32_t swizzle_bit, isl_mem_copy_fn mem_copy, isl_mem_copy_fn mem_copy_align16) linear_to_xtiled() argument 292 linear_to_ytiled(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y3, char *dst, const char *src, int32_t src_pitch, uint32_t swizzle_bit, isl_mem_copy_fn mem_copy, isl_mem_copy_fn mem_copy_align16) linear_to_ytiled() argument 414 xtiled_to_linear(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t dst_pitch, uint32_t swizzle_bit, isl_mem_copy_fn mem_copy, isl_mem_copy_fn mem_copy_align16) xtiled_to_linear() argument 456 ytiled_to_linear(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y3, char *dst, const char *src, int32_t dst_pitch, uint32_t swizzle_bit, isl_mem_copy_fn mem_copy, isl_mem_copy_fn mem_copy_align16) ytiled_to_linear() argument 628 linear_to_xtiled_faster(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t src_pitch, uint32_t swizzle_bit, isl_memcpy_type copy_type) linear_to_xtiled_faster() argument 673 linear_to_ytiled_faster(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t src_pitch, uint32_t swizzle_bit, isl_memcpy_type copy_type) linear_to_ytiled_faster() argument 717 xtiled_to_linear_faster(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t dst_pitch, uint32_t swizzle_bit, isl_memcpy_type copy_type) xtiled_to_linear_faster() argument 773 ytiled_to_linear_faster(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3, uint32_t y0, uint32_t y1, char *dst, const char *src, int32_t dst_pitch, uint32_t swizzle_bit, isl_memcpy_type copy_type) ytiled_to_linear_faster() argument 878 uint32_t y0 = MAX2(yt1, yt); linear_to_tiled() local 978 uint32_t y0 = MAX2(yt1, yt); tiled_to_linear() local [all...] |
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | bench.c | 58 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()
|
H A D | bench_full.c | 60 * Point x0, y0 is deemed to be in the Mandelbrot set if the return 65 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() [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imstb_truetype.h | 194 // bounding box for all characters. SF*-y0 will be the distance in pixels 197 // screen where y=0, then you would set the baseline to SF*-y0. 209 // relative to <current_point, baseline>. I.e. if it returns x0,y0,x1,y1, 211 // <current_point+SF*x0, baseline+SF*y0> to <current_point+SF*x1,baseline+SF*y1). 312 glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y0); in my_stbtt_print() 313 glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y0); in my_stbtt_print() 391 int advance,lsb,x0,y0,x1,y1; 394 stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1); 395 stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 7 530 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap global() member 546 float x0,y0,s0,t0; // top-left global() member 578 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap global() member 1590 stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) stbtt_GetGlyphBox() argument 1606 stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1) stbtt_GetCodepointBox() argument 2254 stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) stbtt__GetGlyphInfoT2() argument [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imstb_truetype.h | 194 // bounding box for all characters. SF*-y0 will be the distance in pixels 197 // screen where y=0, then you would set the baseline to SF*-y0. 209 // relative to <current_point, baseline>. I.e. if it returns x0,y0,x1,y1, 211 // <current_point+SF*x0, baseline+SF*y0> to <current_point+SF*x1,baseline+SF*y1). 312 glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y0); in my_stbtt_print() 313 glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y0); in my_stbtt_print() 391 int advance,lsb,x0,y0,x1,y1; 394 stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1); 395 stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 7 530 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap global() member 546 float x0,y0,s0,t0; // top-left global() member 578 unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap global() member 1590 stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) stbtt_GetGlyphBox() argument 1606 stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1) stbtt_GetCodepointBox() argument 2254 stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) stbtt__GetGlyphInfoT2() argument [all...] |
/third_party/ffmpeg/libswscale/arm/ |
H A D | rgb2yuv_neon_common.S | 75 alias y0, y, \set 117 add y0_end, y0, width 120 add y1, y0, y_stride 127 \kernel \s_fmt, \d_fmt, src0, src1, y0, y1, chroma, header 130 \kernel \s_fmt, \d_fmt, src0, src1, y0, y1, chroma 132 cmp y0, y0_end 135 add y0, y1, y_padding 140 add y1, y0, y_stride 268 .macro kernel_420_16x2 rgb_fmt, yuv_fmt, rgb0, rgb1, y0, y1, chroma, count 276 store_y8_16x1 \y0, \coun [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/ |
H A D | vktRayQueryBuiltinTests.cpp | 767 const float y0 = float(y + 0) / float(height); in initVertexBuffer() local 771 const float ym = (y0 + y1) / 2.0f; in initVertexBuffer() 773 vertices.push_back(tcu::Vec4(x0, y0, z, w)); in initVertexBuffer() 826 const float y0 = float(y + 0) / float(height); in initVertexBuffer() local 830 const float ym = (y0 + y1) / 2.0f; in initVertexBuffer() 832 vertices.push_back(tcu::Vec4(x0, y0, z, w)); in initVertexBuffer() 1959 const float y0 = float(startPos.y() + 0) / float(height); in initAccelerationStructures() local 1966 const float ym = (y0 + y1) / 2.0f; in initAccelerationStructures() 1968 geometryData.push_back(tcu::Vec3(x0, y0, z)); in initAccelerationStructures() 1974 geometryData.push_back(tcu::Vec3(x0, y0, in initAccelerationStructures() 2118 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 2277 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2401 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2554 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2714 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 2875 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3035 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3202 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3382 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3564 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3780 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 4200 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4324 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4489 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4659 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4851 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 5019 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 5192 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 5372 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/ |
H A D | vktRayQueryBuiltinTests.cpp | 755 const float y0 = float(y + 0) / float(height); in initVertexBuffer() local 759 const float ym = (y0 + y1) / 2.0f; in initVertexBuffer() 761 vertices.push_back(tcu::Vec4(x0, y0, z, w)); in initVertexBuffer() 814 const float y0 = float(y + 0) / float(height); in initVertexBuffer() local 818 const float ym = (y0 + y1) / 2.0f; in initVertexBuffer() 820 vertices.push_back(tcu::Vec4(x0, y0, z, w)); in initVertexBuffer() 1939 const float y0 = float(startPos.y() + 0) / float(height); in initAccelerationStructures() local 1946 const float ym = (y0 + y1) / 2.0f; in initAccelerationStructures() 1948 geometryData.push_back(tcu::Vec3(x0, y0, z)); in initAccelerationStructures() 1954 geometryData.push_back(tcu::Vec3(x0, y0, in initAccelerationStructures() 2098 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 2257 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2381 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2534 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 2694 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 2855 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3015 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3182 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3362 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3544 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 3760 const float y0 = float(startPos.y() + 0) / float(height); initAccelerationStructures() local 4180 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4304 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4469 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4639 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4831 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 4999 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 5172 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local 5352 const float y0 = float(squareY + 0) / float(height); initAccelerationStructures() local [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_transfer.c | 49 if (src->y1 - src->y0 != dst->y1 - dst->y0) in nv30_transfer_scaled() 341 PUSH_DATA (push, (dst->y1 - dst->y0) << 16 | dst->y0); in nv30_transfer_rect_blit() 346 PUSH_DATAf(push, src->y0); in nv30_transfer_rect_blit() 349 PUSH_DATA (push, (dst->y0 << 16) | dst->x0); in nv30_transfer_rect_blit() 352 PUSH_DATAf(push, src->y0); in nv30_transfer_rect_blit() 355 PUSH_DATA (push, (dst->y0 << 16) | dst->x1); in nv30_transfer_rect_blit() 465 PUSH_DATA (push, ( dst->y0 << 16) | dst->x0); in nv30_transfer_rect_sifm() 466 PUSH_DATA (push, ((dst->y1 - dst->y0) << 1 in nv30_transfer_rect_sifm() [all...] |
/third_party/mesa3d/src/intel/blorp/ |
H A D | blorp_clear.c | 299 /* The x0, y0, x1, and y1 parameters must already be populated with the render 306 unsigned *x0, unsigned *y0, in get_fast_clear_rect() 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() 460 params.y0 = y0; in blorp_fast_clear() 468 ¶ms.x0, ¶ms.y0, ¶ms.x1, ¶ms.y1); in blorp_fast_clear() 515 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, in blorp_clear() 600 params.y0 in blorp_clear() 303 get_fast_clear_rect(const struct isl_device *dev, const struct isl_surf *surf, const struct isl_surf *aux_surf, unsigned *x0, unsigned *y0, unsigned *x1, unsigned *y1) get_fast_clear_rect() argument 448 blorp_fast_clear(struct blorp_batch *batch, const struct blorp_surf *surf, enum isl_format format, struct isl_swizzle swizzle, uint32_t level, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1) blorp_fast_clear() argument 511 blorp_clear(struct blorp_batch *batch, const struct blorp_surf *surf, enum isl_format format, struct isl_swizzle swizzle, uint32_t level, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, union isl_color_value clear_color, uint8_t color_write_disable) blorp_clear() argument 706 blorp_clear_stencil_as_rgba(struct blorp_batch *batch, const struct blorp_surf *surf, uint32_t level, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint8_t stencil_mask, uint8_t stencil_value) blorp_clear_stencil_as_rgba() argument 810 blorp_clear_depth_stencil(struct blorp_batch *batch, const struct blorp_surf *depth, const struct blorp_surf *stencil, uint32_t level, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, bool clear_depth, float depth_value, uint8_t stencil_mask, uint8_t stencil_value) blorp_clear_depth_stencil() argument 903 blorp_can_hiz_clear_depth(const struct intel_device_info *devinfo, const struct isl_surf *surf, enum isl_aux_usage aux_usage, uint32_t level, uint32_t layer, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1) blorp_can_hiz_clear_depth() argument 983 blorp_can_clear_full_surface(const struct blorp_surf *depth, const struct blorp_surf *stencil, uint32_t level, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, bool clear_depth, bool clear_stencil) blorp_can_clear_full_surface() argument 1006 blorp_hiz_clear_depth_stencil(struct blorp_batch *batch, const struct blorp_surf *depth, const struct blorp_surf *stencil, uint32_t level, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, bool clear_depth, float depth_value, bool clear_stencil, uint8_t stencil_value) blorp_hiz_clear_depth_stencil() argument 1073 blorp_gfx8_hiz_clear_attachments(struct blorp_batch *batch, uint32_t num_samples, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, bool clear_depth, bool clear_stencil, uint8_t stencil_value) blorp_gfx8_hiz_clear_attachments() argument 1110 blorp_clear_attachments(struct blorp_batch *batch, uint32_t binding_table_offset, enum isl_format depth_format, uint32_t num_samples, uint32_t start_layer, uint32_t num_layers, uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, bool clear_color, union isl_color_value color_value, bool clear_depth, float depth_value, uint8_t stencil_mask, uint8_t stencil_value) blorp_clear_attachments() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | angletypes_unittest.cpp | 299 ASSERT_EQ(result.y0(), 0); in TEST() 307 ASSERT_EQ(result.y0(), 0); in TEST() 315 ASSERT_EQ(result.y0(), -30); in TEST() 323 ASSERT_EQ(result.y0(), -30); in TEST() 343 ASSERT_EQ(result.y0(), 0); in TEST() 359 ASSERT_EQ(result.y0(), 0); in TEST() 375 ASSERT_EQ(result.y0(), 0); in TEST() 395 ASSERT_EQ(result.y0(), 0) << offsetLeft << " " << offsetRight; in TEST() 410 ASSERT_EQ(result.y0(), -100) << offsetLeft << " " << offsetRight; in TEST() 423 ASSERT_EQ(result.y0(), in TEST() [all...] |