HomeSort by: relevance | last modified time | path
    Searched defs:line (Results 1 - 25 of 230) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_debug.c 36 char line[2048], command[128]; local
53 while (fgets(line, sizeof(line), p))
54 fprintf(fp, "%s", line);
  /xsrc/external/mit/mesa-demos/dist/src/tests/
lineclip.c 35 line(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) function
60 line(-20, win_height / 2 - 20,
62 line( 20, win_height / 2 + 20,
67 line(win_width / 2 - 20, win_height + 20,
69 line(win_width / 2 + 20, win_height - 20,
74 line(win_width - 20, win_height / 2 - 20,
76 line(win_width + 20, win_height / 2 + 20,
81 line(win_width / 2 - 20, 20,
83 line(win_width / 2 + 20, -20,
110 line(-5, 20
    [all...]
arbgpuprog.c 58 int i, line = 1; local
61 line++;
63 return line;
112 printf("Vertex Program Error (pos=%d line=%d): %s\n", errorPos, l,
150 printf("Fragment Program Error (pos=%d line=%d): %s\n", errorPos, l,
  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl_dd/
t_dd_triemit.h 106 static __inline void TAG(line)( CTX_ARG, function
  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/valhall/test/
test-disassembler.c 66 char line[128]; local
69 while (fgets(line, sizeof(line), fp) != NULL) {
72 size_t len = strlen(line);
80 fprintf(stderr, "Invalid reference %s\n", line);
84 uint64_t bin = parse_hex(line);
91 const char *reference = line + 27;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl_dd/
t_dd_triemit.h 106 static __inline void TAG(line)( CTX_ARG, function
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
hull.h 57 Gridline *line; member in struct:Hull::Side
  /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/
cap.c 25 VGPath line; local
36 line = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F,
53 vgAppendPathData(line, 3, lineCommands, lineCoords);
63 vgDrawPath(line, VG_STROKE_PATH);
65 vgDestroyPath(line);
  /xsrc/external/mit/libXpm/dist/src/
rgb.c 58 char line[512], name[512], *rgbname, *s1, *s2; local
65 /* Loop reading each line in the file. */
69 while (fgets(line, sizeof(line), rgbf) && n < MAX_RGBNAMES) {
71 /* Skip silently if line is bad. */
72 items = sscanf(line, "%d %d %d %[^\n]\n", &red, &green, &blue, name);
  /xsrc/external/mit/libXmu/dist/test/
CursorName.c 41 char line[256]; local
51 while (fgets(line, sizeof(line), cursorfont) != NULL) {
52 char *p = line;
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/
glcpp-parse.y 196 %token DEFINED ELIF_EXPANDED HASH_TOKEN DEFINE_TOKEN FUNC_IDENTIFIER OBJ_IDENTIFIER ELIF ELSE ENDIF ERROR_TOKEN IF IFDEF IFNDEF LINE PRAGMA UNDEF VERSION_TOKEN GARBAGE IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE PLUS_PLUS MINUS_MINUS PATH INCLUDE
222 | input line
225 line: label
249 _mesa_string_buffer_printf(parser->output, "#line %" PRIiMAX "\n", $2);
257 "#line %" PRIiMAX " %" PRIiMAX "\n",
264 "#line %" PRIiMAX " %s\n",
286 | HASH_TOKEN LINE pp_tokens NEWLINE {
533 glcpp_error(& @1, parser, "#version must appear on the first line");
539 glcpp_error(& @1, parser, "#version must appear on the first line");
1956 int line)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_pipe.h 42 * Basic info for a point/line/triangle primitive.
69 void (*line)( struct draw_stage *, member in struct:draw_stage
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/
glcpp-parse.y 177 %token DEFINED ELIF_EXPANDED HASH_TOKEN DEFINE_TOKEN FUNC_IDENTIFIER OBJ_IDENTIFIER ELIF ELSE ENDIF ERROR_TOKEN IF IFDEF IFNDEF LINE PRAGMA UNDEF VERSION_TOKEN GARBAGE IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE PLUS_PLUS MINUS_MINUS
203 | input line
206 line: label
230 _mesa_string_buffer_printf(parser->output, "#line %" PRIiMAX "\n", $2);
238 "#line %" PRIiMAX " %" PRIiMAX "\n",
260 | HASH_TOKEN LINE pp_tokens NEWLINE {
433 glcpp_error(& @1, parser, "#version must appear on the first line");
439 glcpp_error(& @1, parser, "#version must appear on the first line");
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_pipe.h 42 * Basic info for a point/line/triangle primitive.
69 void (*line)( struct draw_stage *, member in struct:draw_stage
  /xsrc/external/mit/mesa-demos/dist/src/trivial/
quad-tex-sub.c 37 GLint line = 0; variable
67 t = line % SIZE;
68 if (line % (SIZE * 2) < SIZE)
104 line++;
126 line++;
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/fb/
fbbitmap.c 83 * First, goes through each line and makes boxes by noting the transitions
85 * Then it coalesces the current line with the previous if they have boxes
93 const FbBits *bits, *line, *end; local
104 line = (FbBits *) pixmap->devPrivate.ptr;
116 bits = line;
117 line += stride;
119 memcmp(bits, line, width >> 3) == 0 &&
120 (maskw == 0 || (bits[width >> FB_SHIFT] & maskw) == (line[width >> FB_SHIFT] & maskw)))
121 line += stride, y2++;
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/fb/
fbbitmap.c 83 * First, goes through each line and makes boxes by noting the transitions
85 * Then it coalesces the current line with the previous if they have boxes
93 const FbBits *bits, *line, *end; local
104 line = (FbBits *) pixmap->devPrivate.ptr;
116 bits = line;
117 line += stride;
119 memcmp(bits, line, width >> 3) == 0 &&
120 (maskw == 0 || (bits[width >> FB_SHIFT] & maskw) == (line[width >> FB_SHIFT] & maskw)))
121 line += stride, y2++;
  /xsrc/external/mit/xedit/dist/lisp/re/
tests.c 45 int line, ecode, i, len, group, failed, errors; local
56 errors = ecode = line = group = failed = 0;
59 ++line;
66 fprintf(stderr, "syntax error at line %d\n", line);
86 fprintf(stderr, "no previous pattern at line %d\n", line);
128 fprintf(stderr, "%s, at line %d\n", buf, line);
158 fprintf(stderr, "Error value %d doesn't match: %s, at line %d\n"
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/pandecode/
cmdline.c 122 pandecode_read_mmap(const char *base, const char *line)
124 assert(strlen(line) < 500);
129 sscanf(line, "MMAP %" PRIx64 " %s", &addr, name);
134 pandecode_read_job_submit(const char *base, const char *line)
140 sscanf(line, "JS %" PRIx64 " %x %x", &addr, &core_req, &is_bifrost);
156 char *line = NULL; local
159 while (getline(&line, &len, fp) != -1) {
160 switch (line[0]) {
162 pandecode_read_mmap(base, line);
166 pandecode_read_job_submit(base, line);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /xsrc/external/mit/freetype/dist/src/base/
ftlcdfil.c 95 FT_Byte* line = origin; local
101 for ( ; height > 0; height--, line -= pitch )
107 val = line[0];
112 val = line[1];
120 val = line[xx];
127 line[xx - 2] = FT_SHIFTCLAMP( fir[0] );
130 line[xx - 2] = FT_SHIFTCLAMP( fir[1] );
131 line[xx - 1] = FT_SHIFTCLAMP( fir[2] );
210 FT_Byte* line = origin; local
213 for ( ; height > 0; height--, line -= pitch
    [all...]
  /xsrc/external/mit/libX11/dist/src/
RdBitF.c 119 char line[MAX_SIZE]; /* input line from file */ local
121 char name_and_type[MAX_SIZE]; /* an input line */
123 int value; /* from an input line */
139 while (fgets(line, MAX_SIZE, fstream)) {
140 if (strlen(line) == MAX_SIZE-1)
142 if (sscanf(line,"#define %s %d",name_and_type,&value) == 2) {
163 if (sscanf(line, "static short %s = {", name_and_type) == 1)
165 else if (sscanf(line,"static unsigned char %s = {",name_and_type) == 1)
167 else if (sscanf(line, "static char %s = {", name_and_type) == 1
    [all...]
  /xsrc/external/mit/makedepend/dist/
cppsetup.c 35 const char *line; member in struct:_parse_data
50 fprintf(stderr, "%s: %s", prefix, pd->line);
51 i = cp - pd->line;
52 if (i > 0 && pd->line[i - 1] != '\n') {
114 cppsetup(const char *filename, const char *line,
120 .line = line,
131 (void) ParseIfExpression(&ip, line, &val);
  /xsrc/external/mit/pixman/dist/pixman/
pixman-edge-imp.h 34 uint32_t *line; local
39 line = buf + pixman_fixed_to_int (y) * stride;
53 * when the sample point lies exactly on the line, we round towards
108 uint32_t *a = line;
131 DEFINE_ALPHA(line,lxi);
177 line += stride;

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 910