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

12

/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/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/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/xf86-video-vboxvideo/dist/src/
H A Dgetmode.c61 * cx and cy.
64 const char *pszName, unsigned cx, unsigned cy)
73 sprintf(szName, "%ux%u", cx, cy);
76 TRACE_LOG("pszName=%s, cx=%u, cy=%u\n", pszName, cx, cy);
93 m->VDisplay = cy;
136 unsigned cy = 0; local in function:vboxAddModes
150 if (sscanf(pScrn->display->modes[i], "%ux%u", &cx, &cy) == 2)
153 vboxFillDisplayMode(pScrn, pMode, pScrn->display->modes[i], cx, cy);
168 pVBox->pScreens[i].aPreferredSize.cy
63 vboxFillDisplayMode(ScrnInfoPtr pScrn,DisplayModePtr m,const char * pszName,unsigned cx,unsigned cy) argument
[all...]
H A DVBoxVideoIPRT.h212 int32_t cy; member in struct:RTRECT2
223 uint32_t cy; member in struct:RTRECTSIZE
H A DModesetting.c130 * @param cy the vertical panning offset
135 uint16_t cy)
158 VBVO_PORT_WRITE_U16(VBE_DISPI_IOPORT_DATA, cy);
313 p->cy = cHeight;
132 VBoxVideoSetModeRegisters(uint16_t cWidth,uint16_t cHeight,uint16_t cVirtWidth,uint16_t cBPP,uint16_t fFlags,uint16_t cx,uint16_t cy) argument
H A Dpointer.c380 unsigned short cx, cy; local in function:vbox_load_cursor_argb
430 for (cy = 0; cy < h; cy++)
H A DVBoxVideoGuest.h148 uint16_t cx, uint16_t cy);
/xsrc/external/mit/xorg-server/dist/test/
H A Dfixes.c309 int cx, cy; /* clamped */ local in function:fixes_pointer_barrier_clamp_test
319 cy = INT_MAX;
320 barrier_clamp_to_barrier(&barrier, BarrierPositiveX, &cx, &cy);
322 assert(cy == INT_MAX);
325 cy = INT_MAX;
326 barrier_clamp_to_barrier(&barrier, BarrierNegativeX, &cx, &cy);
328 assert(cy == INT_MAX);
338 cy = INT_MAX;
339 barrier_clamp_to_barrier(&barrier, BarrierPositiveY, &cx, &cy);
341 assert(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/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/pixman/dist/pixman/
H A Dpixman-conical-gradient.c71 double cy = 0.; local in function:conical_get_scanline
92 cy = image->common.transform->matrix[1][0] / 65536.;
123 ry += cy;
159 ry += 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;
/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/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/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/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/transset/dist/
H A Ddsimple.c224 int rx, ry, cx, cy; local in function:Get_Window_Under_Cursor
239 &cx, &cy, &mask);
/xsrc/external/mit/mesa-demos/dist/src/xdemos/
H A Dshape.c183 int cy = height / 2; local in function:make_shape_mask
191 int y = cy - radius * cos(angle);
/xsrc/external/mit/xeyes/dist/
H A DEyes.c600 double cx, cy; local in function:computePupil
608 cy = layout->y; dy = mouse.y - cy;
621 y0 = screen->y - cy;
653 cy += dy;
656 cy += dist * sina;
660 ret.y = cy;
/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/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...]

Completed in 33 milliseconds

12