Home
last modified time | relevance | path

Searched refs:MAXSHORT (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/external/xserver/render/
H A Dmitrap.c52 box->y1 = MAXSHORT; in miTrapezoidBounds()
54 box->x1 = MAXSHORT; in miTrapezoidBounds()
H A Dglyph.c507 extents->x1 = MAXSHORT; in GlyphExtents()
509 extents->y1 = MAXSHORT; in GlyphExtents()
525 if (x2 > MAXSHORT) in GlyphExtents()
526 x2 = MAXSHORT; in GlyphExtents()
528 if (y2 > MAXSHORT) in GlyphExtents()
529 y2 = MAXSHORT; in GlyphExtents()
H A Dmipict.c227 #define BOUND(v) (INT16) ((v) < MINSHORT ? MINSHORT : (v) > MAXSHORT ? MAXSHORT : (v))
/OK3568_Linux_fs/external/xserver/include/
H A Dmisc.h154 #if !defined(MAXSHORT) || !defined(MINSHORT) || \
162 #undef MAXSHORT
163 #define MAXSHORT SHRT_MAX macro
/OK3568_Linux_fs/external/xserver/exa/
H A Dexa_glyphs.c641 extents->x1 = MAXSHORT; in GlyphExtents()
643 extents->y1 = MAXSHORT; in GlyphExtents()
659 if (x2 > MAXSHORT) in GlyphExtents()
660 x2 = MAXSHORT; in GlyphExtents()
662 if (y2 > MAXSHORT) in GlyphExtents()
663 y2 = MAXSHORT; in GlyphExtents()
H A Dexa_render.c521 int x1 = MAXSHORT; in exaCompositeRects()
522 int y1 = MAXSHORT; in exaCompositeRects()
560 box.x2 = x2 < MAXSHORT ? x2 : MAXSHORT; in exaCompositeRects()
562 box.y2 = y2 < MAXSHORT ? y2 : MAXSHORT; in exaCompositeRects()
/OK3568_Linux_fs/external/xserver/dix/
H A Dregion.c1333 if ((x2 = x1 + (int) prect->width) > MAXSHORT) in RegionFromRects()
1334 x2 = MAXSHORT; in RegionFromRects()
1335 if ((y2 = y1 + (int) prect->height) > MAXSHORT) in RegionFromRects()
1336 y2 = MAXSHORT; in RegionFromRects()
1356 if ((x2 = x1 + (int) prect->width) > MAXSHORT) in RegionFromRects()
1357 x2 = MAXSHORT; in RegionFromRects()
1358 if ((y2 = y1 + (int) prect->height) > MAXSHORT) in RegionFromRects()
1359 y2 = MAXSHORT; in RegionFromRects()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dvalues.h43 #define MAXSHORT SHRT_MAX macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dvalues.h43 #define MAXSHORT SHRT_MAX macro
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_compositerects.c44 if (v > MAXSHORT) in bound()
45 return MAXSHORT; in bound()
H A Dglamor_utils.h683 .x2 = MAXSHORT, in glamor_no_rendering_bounds()
684 .y2 = MAXSHORT, in glamor_no_rendering_bounds()
694 .x1 = MAXSHORT, in glamor_start_rendering_bounds()
695 .y1 = MAXSHORT, in glamor_start_rendering_bounds()
/OK3568_Linux_fs/external/xserver/randr/
H A Drrinfo.c83 CARD16 minWidth = MAXSHORT, minHeight = MAXSHORT; in RRScanOldConfig()
/OK3568_Linux_fs/external/xserver/xfixes/
H A Dregion.c443 if ((int) stuff->x + (int) stuff->width > MAXSHORT) in ProcXFixesInvertRegion()
444 bounds.x2 = MAXSHORT; in ProcXFixesInvertRegion()
448 if ((int) stuff->y + (int) stuff->height > MAXSHORT) in ProcXFixesInvertRegion()
449 bounds.y2 = MAXSHORT; in ProcXFixesInvertRegion()
/OK3568_Linux_fs/external/xserver/mi/
H A Dmiwideline.c116 spanGroup->ymin = MAXSHORT; in miInitSpanGroup()
565 spanGroup->ymin = MAXSHORT; in miFillUniqueSpanGroup()
H A Dmiarc.c942 xMin = yMin = MAXSHORT; in miWideArc()