Searched refs:min_y (Results 1 - 25 of 44) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dbrw_meta_util.c57 * \param min_y The clipping region's bottom coordinate
69 float min_x, float min_y, float max_x, float max_y,
74 min_y <= max_y &&
78 min_y <= y1 &&
93 if (y0 < min_y)
94 *clipped_y0 = min_y - y0;
68 compute_pixels_clipped(float x0,float y0,float x1,float y1,float min_x,float min_y,float max_x,float max_y,float * clipped_x0,float * clipped_y0,float * clipped_x1,float * clipped_y1) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_meta_util.c57 * \param min_y The clipping region's bottom coordinate
69 float min_x, float min_y, float max_x, float max_y,
74 min_y <= max_y &&
78 min_y <= y1 &&
93 if (y0 < min_y)
94 *clipped_y0 = min_y - y0;
68 compute_pixels_clipped(float x0,float y0,float x1,float y1,float min_x,float min_y,float max_x,float max_y,float * clipped_x0,float * clipped_y0,float * clipped_x1,float * clipped_y1) argument
/xsrc/external/mit/xf86-input-elographics/dist/src/
H A Dxf86Elo.c186 int min_y; /* Minimum y reported by calibration */ member in struct:_EloPrivateRec
415 if (priv->min_y > priv->max_y) {
417 cur_y = priv->max_y - cur_y + priv->min_y;
791 y0 = min(priv->min_y, priv->max_y);
792 y1 = max(priv->min_y, priv->max_y);
955 priv->min_y = 0;
1067 priv->min_y = xf86SetIntOption(pInfo->options, "MinY", 0);
1068 xf86Msg(X_CONFIG, "Elographics minimum y position: %d\n", priv->min_y);
1097 height = priv->max_y - priv->min_y;
1118 tmp = priv->min_y;
[all...]
/xsrc/external/mit/xf86-input-ws/dist/src/
H A Dws.h43 int min_x, max_x, min_y, max_y; /* coord space */ member in struct:WSDevice
H A Dws.c272 priv->min_y = 0;
289 priv->min_y = priv->coords.miny;
326 priv->min_y = xf86SetIntOption(pInfo->options, "MinY", priv->min_y);
328 pInfo->name, priv->min_y);
440 ymin = priv->min_y;
680 ay = priv->max_y - ay + priv->min_y;
930 priv->min_y = 0;
935 priv->min_y = ((int *)(val->data))[2];
939 priv->min_y, pri
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimstb_rectpack.h297 int min_y, visited_width, waste_area; local in function:stbrp__skyline_find_min_y
313 min_y = 0;
317 if (node->y > min_y) {
318 // raise min_y higher.
319 // we've accounted for all waste up to min_y,
321 waste_area += visited_width * (node->y - min_y);
322 min_y = node->y;
333 waste_area += under_width * (min_y - node->y);
340 return min_y;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimstb_rectpack.h297 int min_y, visited_width, waste_area; local in function:stbrp__skyline_find_min_y
313 min_y = 0;
317 if (node->y > min_y) {
318 // raise min_y higher.
319 // we've accounted for all waste up to min_y,
321 waste_area += visited_width * (node->y - min_y);
322 min_y = node->y;
333 waste_area += under_width * (min_y - node->y);
340 return min_y;
/xsrc/external/mit/ctwm/dist/
H A Dfunctions_identify.c243 int min_x, min_y, max_bottom, max_right; local in function:Identify
253 RLayoutFindTopBottomEdges(Scr->Layout, &area, &min_y, &max_bottom);
254 if(py < min_y) {
255 py = min_y;
H A Dr_area.c348 const int min_y = min(self->y, other->y); local in function:RAreaVerticalUnion
350 const int max_height = max_y - min_y + 1;
377 RAreaNewStatic(right->x, min_y,
H A Dr_area_list.c546 int min_y = self->len ? RAreaY2(cur_area) : 0; local in function:RAreaListMinY2
549 if(RAreaY2(cur_area) < min_y) {
550 min_y = RAreaY2(cur_area);
554 return min_y;
/xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
H A Dvmwgfx_layout.c125 int min_x = INT_MAX, max_x = INT_MIN, min_y = INT_MAX, max_y = INT_MIN; local in function:vmwgfx_layout_from_kms
159 min_y = min(min_y, box->y);
/xsrc/external/mit/xorg-server.old/dist/Xi/
H A Dchgdctl.c95 swapl(&calib->min_y, n);
208 dev->absolute->min_y = calib->min_y;
H A Dgetdctl.c131 calib->min_y = dts->min_y;
143 swapl(&calib->min_y, n);
/xsrc/external/mit/xterm/dist/vttests/
H A Dxtra-scroll.pl119 my $min_y = ( $margins{T} >= 0 ) ? $margins{T} : 0;
120 my $two_y = $min_y + 1; # scrolling region is at least 2 lines
123 $y -= $min_y; # convert to relative ordinate
/xsrc/external/mit/libXi/dist/src/
H A DXChgDCtl.c123 c.min_y = C->min_y;
H A DXGetDCtl.c197 C->min_y = c->min_y;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
H A Diris_blit.c61 * \param min_y The clipping region's bottom coordinate
73 float min_x, float min_y, float max_x, float max_y,
79 min_y <= max_y &&
83 min_y <= y1 &&
98 if (y0 < min_y)
99 *clipped_y0 = min_y - y0;
72 compute_pixels_clipped(float x0,float y0,float x1,float y1,float min_x,float min_y,float max_x,float max_y,float * clipped_x0,float * clipped_y0,float * clipped_x1,float * clipped_y1) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
H A Diris_blit.c61 * \param min_y The clipping region's bottom coordinate
73 float min_x, float min_y, float max_x, float max_y,
79 min_y <= max_y &&
83 min_y <= y1 &&
98 if (y0 < min_y)
99 *clipped_y0 = min_y - y0;
72 compute_pixels_clipped(float x0,float y0,float x1,float y1,float min_x,float min_y,float max_x,float max_y,float * clipped_x0,float * clipped_y0,float * clipped_x1,float * clipped_y1) argument
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_common.c111 int min_x, min_y, max_x, max_y; local in function:radeonUpdateScissor
115 min_x = min_y = 0;
133 rmesa->state.scissor.rect.y1 = CLAMP(y1, min_y, max_y);
135 rmesa->state.scissor.rect.y2 = CLAMP(y2, min_y, max_y);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_common.c110 int min_x, min_y, max_x, max_y; local in function:radeonUpdateScissor
114 min_x = min_y = 0;
132 rmesa->state.scissor.rect.y1 = CLAMP(y1, min_y, max_y);
134 rmesa->state.scissor.rect.y2 = CLAMP(y2, min_y, max_y);
/xsrc/external/mit/xwud/dist/
H A Dxwud.c754 Position x, y, min_y, max_y, exp_max_y, src_x, src_max_x, src_y; local in function:putScaledImage
827 for (min_y = table.y[src_y]; min_y < exp_max_y; min_y = table.y[y]) {
828 max_y = min_y + strip_height;
830 strip_height = exp_max_y - min_y;
834 if (table.y[y] < min_y)
842 (table.y[y] + h - min_y) *
854 table.y[y] + h - min_y,
861 exp_x, min_y, exp_widt
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
H A Dcrocus_blit.c100 * \param min_y The clipping region's bottom coordinate
112 float min_x, float min_y, float max_x, float max_y,
118 min_y <= max_y &&
122 min_y <= y1 &&
137 if (y0 < min_y)
138 *clipped_y0 = min_y - y0;
111 compute_pixels_clipped(float x0,float y0,float x1,float y1,float min_x,float min_y,float max_x,float max_y,float * clipped_x0,float * clipped_y0,float * clipped_x1,float * clipped_y1) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
H A Dv3dx_rcl.c543 const uint32_t min_y = y * h; local in function:supertile_in_job_scissors
545 const uint32_t max_y = min_y + h - 1;
549 const uint32_t min_s_y = job->scissor.rects[i].min_y;
554 max_y < min_s_y || min_y > max_s_y) {
/xsrc/external/mit/xorg-server/dist/Xi/
H A Dchgdctl.c93 swapl(&calib->min_y, n);
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_largepixmap.c938 float min_x, min_y, max_x, max_y; local in function:glamor_get_transform_extent_from_box
957 min_y = MIN(p0.v[1], p1.v[1]);
958 min_y = MIN(min_y, p2.v[1]);
959 min_y = MIN(min_y, p3.v[1]);
969 box->y1 = floor(min_y) - 1;

Completed in 26 milliseconds

12