Searched refs:cy (Results 1 - 25 of 45) sorted by path

12

/xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/gfx9/
H A Dgfx9addrlib.cpp1346 Coordinate cy('y', rbRegion); local in function:Addr::V2::Gfx9Lib::GetRbEquation
1359 (*pRbEq)[0].add(cy);
1361 cy++;
1365 (*pRbEq)[0].add(cy);
1368 (*pRbEq)[0].add(cy);
1386 (*pRbEq)[idx].add(cy);
1387 cy++;
1412 Coordinate cy('y', 0); local in function:Addr::V2::Gfx9Lib::GetDataEquation
1450 (*pDataEq)[i].add(cy);
1451 cy
1850 Coordinate cy('y', 0); local in function:Addr::V2::Gfx9Lib::GenMetaEquation
1865 Coordinate cy('y', 0); local in function:Addr::V2::Gfx9Lib::GenMetaEquation
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c231 LLVMValueRef cy; local in function:yuv_to_rgb_soa
258 cy = lp_build_const_int_vec(gallivm, type, 298);
280 y = LLVMBuildMul(builder, y, cy, "");
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
H A Dswr_shader.cpp900 LLVMValueRef cy = LLVMBuildLoad(gallivm->builder, outputs[cv][1], ""); local in function:BuilderSWR::CompileVS
939 FADD(FMUL(unwrap(cy), bpy),
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimstb_truetype.h826 stbtt_vertex_type x,y,cx,cy,cx1,cy1; member in struct:__anonc735d1c90708
844 // its x,y, using cx,cy as the bezier control point.
1559 static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy) argument
1565 v->cy = (stbtt_int16) cy;
1624 stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy)
1628 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy);
1632 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy);
1657 stbtt_int32 x,y,cx,cy,s local in function:stbtt__GetGlyphShapeTT
1623 stbtt__close_shape(stbtt_vertex * vertices,int num_vertices,int was_off,int start_off,stbtt_int32 sx,stbtt_int32 sy,stbtt_int32 scx,stbtt_int32 scy,stbtt_int32 cx,stbtt_int32 cy) argument
1888 stbtt__csctx_v(stbtt__csctx * c,stbtt_uint8 type,stbtt_int32 x,stbtt_int32 y,stbtt_int32 cx,stbtt_int32 cy,stbtt_int32 cx1,stbtt_int32 cy1) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Dintel_blit.c336 GLint cx, cy, cw, ch; local in function:intelClearWithBlit
361 cy = ctx->DrawBuffer->Height - fb->_Ymax;
363 cy = fb->_Ymin;
397 y1 = cy + irb->draw_y;
399 y2 = cy + ch + irb->draw_y;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/math/
H A Dm_clip_tmp.h60 const GLfloat cy = from[1];
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
98 vProj[i][1] = cy * oow;
140 const GLfloat cy = from[1];
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
158 if (-cy
[all...]
H A Dm_debug_clip.c83 const GLfloat cy = from[1]; local in function:ref_cliptest_points4
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
107 vProj[i][1] = cy * oow;
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local in function:ref_cliptest_points3
143 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
144 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT;
177 const GLfloat cx = from[0], cy = from[1]; local in function:ref_cliptest_points2
181 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
182 else if ( cy <
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_aatritemp.h222 /* (cx,cy) = center of fragment */
223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable in typeref:typename:const GLfloat
227 array->z[count] = (GLuint) solve_plane(cx, cy, zPlane);
229 array->rgba[count][RCOMP] = solve_plane_chan(cx, cy, rPlane);
230 array->rgba[count][GCOMP] = solve_plane_chan(cx, cy, gPlane);
231 array->rgba[count][BCOMP] = solve_plane_chan(cx, cy, bPlane);
232 array->rgba[count][ACOMP] = solve_plane_chan(cx, cy, aPlane);
284 /* (cx,cy) = center of fragment */
285 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable in typeref:typename:const GLfloat
290 array->z[ix] = (GLuint) solve_plane(cx, cy, zPlan
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/gfx9/
H A Dgfx9addrlib.cpp1448 Coordinate cy(DIM_Y, rbRegion); local in function:Addr::V2::Gfx9Lib::GetRbEquation
1461 (*pRbEq)[0].add(cy);
1463 cy++;
1467 (*pRbEq)[0].add(cy);
1470 (*pRbEq)[0].add(cy);
1488 (*pRbEq)[idx].add(cy);
1489 cy++;
1514 Coordinate cy(DIM_Y, 0); local in function:Addr::V2::Gfx9Lib::GetDataEquation
1552 (*pDataEq)[i].add(cy);
1553 cy
1952 Coordinate cy(DIM_Y, 0); local in function:Addr::V2::Gfx9Lib::GenMetaEquation
1967 Coordinate cy(DIM_Y, 0); local in function:Addr::V2::Gfx9Lib::GenMetaEquation
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_pipeline_rt.c1711 nir_ssa_def *cy = nir_fsub(b, nir_vector_extract(b, v_c, ky), nir_fmul(b, sy, nir_vector_extract(b, v_c, kz))); local in function:intersect_ray_amd_software_tri
1713 nir_ssa_def *u = nir_fsub(b, nir_fmul(b, cx, by), nir_fmul(b, cy, bx));
1714 nir_ssa_def *v = nir_fsub(b, nir_fmul(b, ax, cy), nir_fmul(b, ay, cx));
1738 cx = nir_f2f64(b, cx); cy = nir_f2f64(b, cy);
1740 nir_store_var(b, u_var, nir_f2f32(b, nir_fsub(b, nir_fmul(b, cx, by), nir_fmul(b, cy, bx))), 0x1);
1741 nir_store_var(b, v_var, nir_f2f32(b, nir_fsub(b, nir_fmul(b, ax, cy), nir_fmul(b, ay, cx))), 0x1);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c231 LLVMValueRef cy; local in function:yuv_to_rgb_soa
258 cy = lp_build_const_int_vec(gallivm, type, 298);
280 y = LLVMBuildMul(builder, y, cy, "");
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/
H A Dswr_shader.cpp2473 LLVMValueRef cy = LLVMBuildLoad(gallivm->builder, outputs[cv][1], ""); local in function:BuilderSWR::CompileVS
2524 FADD(FMUL(unwrap(cy), bpy),
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimstb_truetype.h826 stbtt_vertex_type x,y,cx,cy,cx1,cy1; member in struct:__anon748b3c5c0708
844 // its x,y, using cx,cy as the bezier control point.
1559 static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy) argument
1565 v->cy = (stbtt_int16) cy;
1624 stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy)
1628 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy);
1632 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy);
1657 stbtt_int32 x,y,cx,cy,s local in function:stbtt__GetGlyphShapeTT
1623 stbtt__close_shape(stbtt_vertex * vertices,int num_vertices,int was_off,int start_off,stbtt_int32 sx,stbtt_int32 sy,stbtt_int32 scx,stbtt_int32 scy,stbtt_int32 cx,stbtt_int32 cy) argument
1888 stbtt__csctx_v(stbtt__csctx * c,stbtt_uint8 type,stbtt_int32 x,stbtt_int32 y,stbtt_int32 cx,stbtt_int32 cy,stbtt_int32 cx1,stbtt_int32 cy1) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Dintel_blit.c336 GLint cx, cy, cw, ch; local in function:intelClearWithBlit
361 cy = ctx->DrawBuffer->Height - fb->_Ymax;
363 cy = fb->_Ymin;
397 y1 = cy + irb->draw_y;
399 y2 = cy + ch + irb->draw_y;
/xsrc/external/mit/MesaLib/dist/src/mesa/math/
H A Dm_clip_tmp.h60 const GLfloat cy = from[1];
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
98 vProj[i][1] = cy * oow;
140 const GLfloat cy = from[1];
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
158 if (-cy
[all...]
H A Dm_debug_clip.c83 const GLfloat cy = from[1]; local in function:ref_cliptest_points4
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT;
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT;
107 vProj[i][1] = cy * oow;
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local in function:ref_cliptest_points3
143 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
144 else if ( cy < -1.0 ) mask |= CLIP_BOTTOM_BIT;
177 const GLfloat cx = from[0], cy = from[1]; local in function:ref_cliptest_points2
181 if ( cy > 1.0 ) mask |= CLIP_TOP_BIT;
182 else if ( cy <
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_aatritemp.h222 /* (cx,cy) = center of fragment */
223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable in typeref:typename:const GLfloat
227 array->z[count] = (GLuint) solve_plane(cx, cy, zPlane);
229 array->rgba[count][RCOMP] = solve_plane_chan(cx, cy, rPlane);
230 array->rgba[count][GCOMP] = solve_plane_chan(cx, cy, gPlane);
231 array->rgba[count][BCOMP] = solve_plane_chan(cx, cy, bPlane);
232 array->rgba[count][ACOMP] = solve_plane_chan(cx, cy, aPlane);
284 /* (cx,cy) = center of fragment */
285 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F; variable in typeref:typename:const GLfloat
290 array->z[ix] = (GLuint) solve_plane(cx, cy, zPlan
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbifrost_compile.c2615 bi_index cx = bi_null(), cy = bi_null(); local in function:bi_emit_texc
2626 cx = bi_emit_texc_cube_coord(b, index, &cy);
2632 cy = bi_word(index, MIN2(1, components - 1));
2775 idx, cx, cy, bi_imm_u32(desc_u), !computed_lod,
/xsrc/external/mit/fontconfig/dist/conf.d/
H A D35-lang-normalize.conf224 <!-- cy* -> cy -->
226 <test name="lang" compare="contains"><string>cy</string></test>
227 <edit name="lang" mode="assign" binding="same"><string>cy</string></edit>
/xsrc/external/mit/fontconfig/dist/fc-lang/
H A DMakefile.am73 cy.orth \
H A DMakefile.in459 cy.orth \
/xsrc/external/mit/freetype/dist/src/raster/
H A Dftraster.c1483 * cy ::
1500 Long cy,
1512 ras.arc[1].y = cy;
1499 Conic_To(RAS_ARGS Long cx,Long cy,Long x,Long y) argument
/xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/
H A Dellipse.c24 const VGfloat cx = 0, cy=29, width=80, height=40; local in function:init
29 data[1] = cy;
34 data[6] = cy;
39 data[11] = cy;
/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dtexaaline.c109 float cx = 0.5 * WinWidth, cy = 0.5 * WinHeight; local in function:Redisplay
123 v0[1] = cy + 40 * Sin(i);
125 v1[1] = cy + len * Sin(i);
133 v0[1] = cy + x * 40 - 20;
135 v1[1] = cy + x * 40 - 20;
H A Dtrirast.c47 GLfloat cx = WinWidth / 2, cy = WinHeight / 2; local in function:RotateVerts
50 float y = vertsIn[i][1] - cy;
53 vertsOut[i][1] = -x * sin(a) + y * cos(a) + cy;

Completed in 61 milliseconds

12