| /xsrc/external/mit/freetype/dist/src/autofit/ |
| afhints.c | 247 AF_Point point = hints->points + point_idx; local 257 if ( point >= segment->first && point <= segment->last ) 267 if ( point == p ) 324 AF_Point point; local 341 for ( point = points; point < limit; point++ ) 343 int point_idx = AF_INDEX_NUM( point, points ); 352 if ( contour < climit && *contour == point ) 866 AF_Point point; local 1187 AF_Point point = hints->points; local 1233 AF_Point point, first, last; local 1259 AF_Point point, first, last; local 1312 AF_Point point; local 1576 AF_Point point; local 1703 AF_Point point; local [all...] |
| aflatin2.c | 244 /* now compute min or max point indices and coordinates */ 265 /* Avoid single-point contours since they are never rasterized. */ 299 /* now check whether the point belongs to a straight or round */ 754 /* set up (u,v) in each point */ 757 AF_Point point = hints->points; local 758 AF_Point limit = point + hints->num_points; 761 for ( ; point < limit; point++ ) 763 point->u = point->fx 769 AF_Point point = hints->points; local 783 AF_Point point = contour[0]; local [all...] |
| /xsrc/external/mit/freetype/dist/src/pshinter/ |
| pshalgo.c | 939 /* we need at least 4 points to create an inflection point */ 1078 /* load outline point coordinates into hinter glyph */ 1084 PSH_Point point = glyph->points; local 1088 for ( ; count > 0; count--, point++, vec++ ) 1090 point->flags2 = 0; 1091 point->hint = NULL; 1094 point->org_u = vec->x; 1095 point->org_v = vec->y; 1099 point->org_u = vec->y; 1100 point->org_v = vec->x 1118 PSH_Point point = glyph->points; local 1185 PSH_Point point; local 1218 PSH_Point point = points; local 1297 PSH_Point point, before, after; local 1363 PSH_Point point, before, after; local 1601 PSH_Point point = glyph->points + first; local 1617 PSH_Point point = glyph->points; local 1630 PSH_Point point = glyph->points; local 1650 PSH_Point point = glyph->points; local 1725 PSH_Point point = glyph->points; local 1786 PSH_Point point; local 1936 PSH_Point first, next, point; local [all...] |
| /xsrc/external/mit/ctwm/dist/ |
| image_bitmap_builtin.c | 327 int point; local 334 point = 4; 352 XDrawLine(dpy, image->pixmap, Scr->NormalGC, point + 1, point - 1, point - 1, 353 point + 1); 354 XDrawLine(dpy, image->pixmap, Scr->NormalGC, point + 1, point, point, 355 point + 1) 425 int point; local [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| DrPoint.c | 44 xPoint *point; local 62 point = (xPoint *) dpy->bufptr; 67 GetReqExtra(PolyPoint, 4, req); /* 1 point = 4 bytes */ 71 point = (xPoint *) NEXTPTR(req,xPolyPointReq); 74 point->x = x; 75 point->y = y;
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| win32_winproc.c | 52 POINT point; /* Point structure. */ local 110 GetCursorPos(&point); 111 ScreenToClient(hwnd, &point); 112 hwnd = ChildWindowFromPoint(hwnd, point); 116 GetCursorPos(&point); 117 ScreenToClient(window->win, &point); 152 window->keyboardUp((unsigned char) 127, point.x, point.y) [all...] |
| win32_x11.c | 164 POINT point; local 166 point.x = src_x; 167 point.y = src_y; 169 ClientToScreen(src, &point); 171 *dest_x_return = point.x; 172 *dest_y_return = point.y; 188 POINT point; local 192 point.x = 0 244 POINT point; local [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/ |
| star-oddeven.c | 41 VGfloat point[2], tangent[2]; local 46 point + 0, point + 1, 48 draw_point(point[0], point[1]); 83 VGfloat point[2], tangent[2]; local
|
| /xsrc/external/mit/xedit/dist/lisp/modules/progmodes/ |
| lisp.lsp | 226 (defun lisp-offset-indent (&aux char (point (scan (point) :eol :left))) 228 (while (member (setq char (char-after point)) indent-spaces) 229 (incf point)) 230 (if (member char '(#\))) (1+ point) point)) 232 (defun lisp-should-indent (options &aux char point start) 243 point (point) 244 char (char-before (point)) [all...] |
| python.lsp | 130 ;; This should be the most common exit point; 145 ;; This should be second most common exit point; 170 (defun python-offset-indent (&aux char (point (point))) 172 (while (member (setq char (char-after point)) indent-spaces) 173 (incf point)) 174 point) 179 (defun python-should-indent (options &aux point start end offset) 190 point (point) [all...] |
| perl.lsp | 286 (defun perl-offset-indent (&aux char (point (point))) 288 (while (member (setq char (char-after point)) indent-spaces) 289 (incf point)) 290 (if (member char '(#\})) (1+ point) point)) 295 (defun perl-should-indent (options &aux char point start offset) 306 point (point) 307 char (char-before point) [all...] |
| /xsrc/external/mit/xfs/dist/config/ |
| config.cpp | 9 default-point-size = 120
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| lp_setup_point.c | 207 * Compute the point->coef[] array dadx, dady, a0 values. 314 * Print point vertex attribs (for debug). 324 debug_printf("llvmpipe point, width %f\n", size); 337 /* x/y positions in fixed point */ 380 /* Point size as fixed point integer, remove rounding errors 405 * Per OpenGL 2.1 spec, section 3.3.1, "Basic Point Rasterization". 407 * This type of point rasterization is only available in pre 3.0 contexts 415 /* Point size as fixed point integer. For GL legacy point 470 struct lp_rast_triangle *point; local 551 struct lp_rast_rectangle *point; local [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/fb/ |
| fbpointbits.h | 56 BITS *point = bits + intToY(pt.pt32[0]) * bitsStride + intToX(pt.pt32[0]); local 57 WRITE(point, bxor); 60 BITS *point = bits + intToY(pt.pt32[1]) * bitsStride + intToX(pt.pt32[1]); local 61 WRITE(point, bxor); 70 BITS *point = bits + intToY(pt) * bitsStride + intToX(pt); local 71 WRITE(point, bxor); 78 BITS *point = bits + intToY(pt) * bitsStride + intToX(pt); local 79 RROP(point, band, bxor); 91 BITS *point = bits + y * bitsStride + x; local 92 WRITE(point, bxor) 101 BITS *point = bits + y * bitsStride + x; local [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/fb/ |
| fbpointbits.h | 56 BITS *point = bits + intToY(pt.pt32[0]) * bitsStride + intToX(pt.pt32[0]); local 57 WRITE(point, bxor); 60 BITS *point = bits + intToY(pt.pt32[1]) * bitsStride + intToX(pt.pt32[1]); local 61 WRITE(point, bxor); 70 BITS *point = bits + intToY(pt) * bitsStride + intToX(pt); local 71 WRITE(point, bxor); 78 BITS *point = bits + intToY(pt) * bitsStride + intToX(pt); local 79 RROP(point, band, bxor); 91 BITS *point = bits + y * bitsStride + x; local 92 WRITE(point, bxor) 101 BITS *point = bits + y * bitsStride + x; local [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/samples/ |
| point.c | 44 float point[3] = { variable 88 point[0] -= 0.25; 91 point[0] += 0.25; 94 point[1] += 0.25; 97 point[1] -= 0.25; 161 glVertex3fv(point); 170 glVertex3fv(point); 220 if (glutCreateWindow("Point Test") == GL_FALSE) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| lp_setup_point.c | 207 * Compute the point->coef[] array dadx, dady, a0 values. 306 * Print point vertex attribs (for debug). 316 debug_printf("llvmpipe point, width %f\n", size); 329 /* x/y positions in fixed point */ 344 struct lp_rast_triangle *point; local 372 /* Point size as fixed point integer, remove rounding errors 393 * Per OpenGL 2.1 spec, section 3.3.1, "Basic Point Rasterization". 395 * This type of point rasterization is only available in pre 3.0 contexts 403 /* Point size as fixed point integer. For GL legacy point [all...] |
| /xsrc/external/mit/freetype/dist/src/base/ |
| ftoutln.c | 54 FT_Vector* point; local 61 FT_UInt first; /* index of first point in contour */ 62 FT_Int tag; /* current point's state */ 80 FT_Int last; /* index of last point in contour */ 100 point = outline->points + first; 104 /* A contour cannot start with a cubic control point! */ 108 /* check first point to determine origin */ 111 /* first point is conic control. Yes, this happens. */ 114 /* start at last point if it is on the curve */ 128 point-- [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/ |
| MESA_sprite_point.spec | 33 a point is rendered as if it were a quadrilateral with unique texture 38 When using point size > 1 or attenuated points this extension is an 52 Texgen and the texture matrix have no effect on the point's s and t 58 3. What about point smoothing? 60 When point smoothing is enabled, a triangle fan could be rendered 61 to approximate a circular point. This could be problematic to 75 effectively specify image rotation per point. 93 point parameter's threshold size? 95 8. Should there be an advertisized maximum sprite point size? 97 No. Since we're rendering the point as a quadrilateral there's n [all...] |
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/ |
| MESA_sprite_point.spec | 33 a point is rendered as if it were a quadrilateral with unique texture 38 When using point size > 1 or attenuated points this extension is an 52 Texgen and the texture matrix have no effect on the point's s and t 58 3. What about point smoothing? 60 When point smoothing is enabled, a triangle fan could be rendered 61 to approximate a circular point. This could be problematic to 75 effectively specify image rotation per point. 93 point parameter's threshold size? 95 8. Should there be an advertisized maximum sprite point size? 97 No. Since we're rendering the point as a quadrilateral there's n [all...] |
| /xsrc/external/mit/libXft/dist/src/ |
| xftxlfd.c | 94 int point; local 109 if (!(xlfd = XftGetInt (++xlfd, &point))) return NULL; 156 if (point > 0) 158 if (!FcPatternAddDouble (pat, FC_SIZE, ((double) point) / 10.0)) goto bail; 161 dpixel = (double) point * (double) resy / 720.0;
|
| /xsrc/external/mit/freetype/dist/src/truetype/ |
| ttinterp.c | 1715 * - move point (MIRP, MDRP, MIAP, MSIRP, MDAP) 1728 * Moves a point by a given distance along the freedom vector. The 1729 * point will be `touched'. 1732 * point :: 1733 * The index of the point to move. 1744 * `Touches' the point. 1749 FT_UShort point, 1763 zone->cur[point].x = ADD_LONG( zone->cur[point].x, 1775 zone->cur[point].x = ADD_LONG( zone->cur[point].x 5352 FT_UShort point; local 5565 FT_UShort point; local 5724 FT_UShort point; local 5869 FT_UShort point = 0; local 5939 FT_UShort point; local 5986 FT_UShort point; local 6100 FT_UShort point = 0; local 6236 FT_UShort point; local 6469 FT_UShort point; local 6533 FT_UShort point, local 6735 FT_UInt point = (FT_UInt)exc->stack[--exc->args]; local 6821 FT_UShort point; local 6998 FT_UInt point; \/* current point *\/ local [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| glutEvent.cpp | 468 void GlutWindow::MouseDown(BPoint point) 470 BGLView::MouseDown(point); 486 BPoint point; 488 GetMouse(&point, &newButtons); 522 statusX = (int)point.x; 523 statusY = (int)point.y; 527 point.x += bounds.left; 528 point.y += bounds.top; 530 bmenu->point = point; [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| draw_pipe_cull.c | 87 stage->next->point( stage->next, header ); 205 stage->point = cull_point; 206 stage->point( stage, header ); 208 stage->point = draw_pipe_passthrough_point; 209 stage->point( stage, header ); 243 stage->point = cull_first_point; 275 cull->stage.point = cull_first_point;
|
| /xsrc/external/mit/bdftopcf/dist/ |
| fontxlfd.h | 62 point arrays to this many 72 /* Pixel and point fields are deprecated in favor of the 76 int pixel, point; member in struct:_FontScalable
|