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

1 2 3

  /xsrc/external/mit/libX11/dist/src/
DrArc.c 30 the last point in one arc coincides with the first point in another.
51 register xArc *arc; local
60 arc = (xArc *) NEXTPTR(req,xPolyArcReq);
62 arc->x = x;
63 arc->y = y;
64 arc->width = width;
65 arc->height = height;
66 arc->angle1 = angle1;
67 arc->angle2 = angle2;
FillArc.c 48 xArc *arc; local
64 arc = (xArc *) dpy->bufptr;
73 arc = (xArc *) NEXTPTR(req,xPolyFillArcReq);
75 arc->x = x;
76 arc->y = y;
77 arc->width = width;
78 arc->height = height;
79 arc->angle1 = angle1;
80 arc->angle2 = angle2;
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
jarcloc.h 39 #include "arc.h"
43 Arc_ptr arc; member in class:Jarcloc
47 inline void init( Arc_ptr a, long first, long last ) { arc = a; p=&a->pwlArc->pts[first]; plast = &a->pwlArc->pts[last]; }
56 if( plast == &arc->pwlArc->pts[0] )
57 plast = &arc->pwlArc->pts[arc->pwlArc->npts - 1];
59 plast = &arc->pwlArc->pts[0];
67 arc = arc->next;
68 p = &arc->pwlArc->pts[0]
    [all...]
  /src/usr.sbin/makefs/cd9660/
cd9660_archimedes.c 82 struct ISO_ARCHIMEDES *arc; local
101 assert(sizeof(*arc) == 32);
102 arc = ecalloc(1, sizeof(*arc));
106 memcpy(arc->magic, "ARCHIMEDES", 10);
107 cd9660_731(0xfff00000 | (type << 8) | (stamp >> 32), arc->loadaddr);
108 cd9660_731(stamp & 0x00ffffffffULL, arc->execaddr);
109 arc->ro_attr = RO_ACCESS_UR | RO_ACCESS_OR;
110 arc->cdfs_attr = node->node->name[0] == '!' ? CDFS_PLING : 0;
111 node->su_tail_data = (void *)arc;
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
gmon_cg_arcs.cc 40 Arc **arcs;
44 * Return TRUE iff PARENT has an arc to covers the address
47 Arc *
50 Arc *arc; local
59 for (arc = parent->cg.children; arc; arc = arc->next_child)
62 arc->parent->name, arc->child->name))
80 Arc *arc; local
    [all...]
cg_arcs.h 24 * Arc structure for call-graph.
27 * of how many times this arc was traversed, and pointers to the next
30 typedef struct arc struct
32 Sym *parent; /* source vertice of arc */
33 Sym *child; /* dest vertice of arc */
35 double time; /* time inherited along arc */
36 double child_time; /* child-time inherited along arc */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
39 int has_been_placed; /* have this arc's functions been placed? *
    [all...]
  /xsrc/external/mit/xorg-server/dist/fb/
fbarc.c 34 xArc * arc, int dx, int dy, FbBits and, FbBits xor);
39 FbArc arc; local
42 arc = 0;
46 arc = fbArc8;
49 arc = fbArc16;
52 arc = fbArc32;
56 if (arc) {
99 (*arc) (dst, dstStride, dstBpp,
  /xsrc/external/mit/xorg-server.old/dist/fb/
fbarc.c 34 xArc *arc,
46 FbArc arc; local
51 arc = 0;
56 case 8: arc = fbArc8; break;
57 case 16: arc = fbArc16; break;
59 case 24: arc = fbArc24; break;
61 case 32: arc = fbArc32; break;
64 if (arc)
112 (*arc) (dst, dstStride, dstBpp,
  /src/usr.sbin/altq/libaltq/
qop_jobs.h 101 int64_t arc; member in struct:jobs_classinfo
111 int64_t adc, int64_t rdc, int64_t alc, int64_t rlc, int64_t arc,
114 int64_t adc, int64_t rdc, int64_t alc, int64_t rlc, int64_t arc);
119 int64_t adc, int64_t rdc, int64_t alc, int64_t rlc, int64_t arc,
122 int64_t adc, int64_t rdc, int64_t alc, int64_t rlc, int64_t arc);
  /src/external/gpl3/binutils/dist/gprof/
call_graph.c 61 /* Keep arc if it is on INCL_ARCS table or if the INCL_ARCS table
69 printf (_("[cg_tally] arc from %s to %s traversed %lu times\n"),
75 /* Read a record from file IFP describing an arc in the function
76 call-graph and the count of how many times the arc has been
99 /* Add this arc: */
110 Arc *arc; local
116 for (arc = sym->cg.children; arc; arc = arc->next_child
    [all...]
cg_arcs.h 24 * Arc structure for call-graph.
27 * of how many times this arc was traversed, and pointers to the next
30 typedef struct arc struct
32 Sym *parent; /* source vertice of arc */
33 Sym *child; /* dest vertice of arc */
35 double time; /* time inherited along arc */
36 double child_time; /* child-time inherited along arc */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
39 int has_been_placed; /* have this arc's functions been placed? *
    [all...]
cg_dfn.c 274 Arc *arc; local
298 for (arc = parent->cg.children; arc; arc = arc->next_child)
300 cg_dfn (arc->child);
cg_arcs.c 52 Arc **arcs;
56 * Return TRUE iff PARENT has an arc to covers the address
59 Arc *
62 Arc *arc; local
71 for (arc = parent->cg.children; arc; arc = arc->next_child)
74 arc->parent->name, arc->child->name))
92 Arc *arc; local
157 Arc *arc; local
266 Arc *arc; local
355 Arc *arc; local
591 Arc *arc; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
call_graph.c 61 /* Keep arc if it is on INCL_ARCS table or if the INCL_ARCS table
69 printf (_("[cg_tally] arc from %s to %s traversed %lu times\n"),
75 /* Read a record from file IFP describing an arc in the function
76 call-graph and the count of how many times the arc has been
99 /* Add this arc: */
110 Arc *arc; local
116 for (arc = sym->cg.children; arc; arc = arc->next_child
    [all...]
cg_arcs.h 24 * Arc structure for call-graph.
27 * of how many times this arc was traversed, and pointers to the next
30 typedef struct arc struct
32 Sym *parent; /* source vertice of arc */
33 Sym *child; /* dest vertice of arc */
35 double time; /* time inherited along arc */
36 double child_time; /* child-time inherited along arc */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
39 int has_been_placed; /* have this arc's functions been placed? *
    [all...]
cg_dfn.c 274 Arc *arc; local
298 for (arc = parent->cg.children; arc; arc = arc->next_child)
300 cg_dfn (arc->child);
cg_arcs.c 52 Arc **arcs;
56 * Return TRUE iff PARENT has an arc to covers the address
59 Arc *
62 Arc *arc; local
71 for (arc = parent->cg.children; arc; arc = arc->next_child)
74 arc->parent->name, arc->child->name))
92 Arc *arc; local
157 Arc *arc; local
266 Arc *arc; local
355 Arc *arc; local
591 Arc *arc; local
    [all...]
  /src/sys/dev/ic/
athrate-onoe.h 49 struct ath_ratectrl arc; /* base state */ member in struct:onoe_softc
athrate-amrr.h 47 struct ath_ratectrl arc; /* base state */ member in struct:amrr_softc
  /src/sys/arch/sparc64/sparc64/
mdesc.c 168 int arc; local
179 arc = elem[idx].d.val;
180 str = mdesc_get_prop_str(arc, "name");
181 val = mdesc_get_prop_val(arc, "cfg-handle");
183 return (arc);
  /xsrc/external/mit/xf86-video-mga/dist/src/
mga_arc.c 67 xArc *arc
82 do360 = miZeroArcSetup(arc, &info, TRUE);
94 if (!(arc->width & 1)) {
105 if (do360 && (arc->width == arc->height) && !(arc->width & 1)) {
178 if (arc->height & 1) {
196 xArc *arc; local
206 for (arc = parcs, i = narcs; --i >= 0; arc++)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/xaa/
xaaFillArc.c 28 * Fill arc using calls to low-level span fill. Because the math for
61 XAAFillEllipseSolid(DrawablePtr pDraw, GCPtr pGC, xArc *arc)
72 miFillArcSetup(arc, &info);
114 XAAFillArcSliceSolid(DrawablePtr pDraw, GCPtr pGC, xArc *arc)
126 miFillArcSetup(arc, &info);
127 miFillArcSliceSetup(arc, &slice, pGC);
129 slw = arc->height;
131 slw += (arc->height >> 1) + 1;
166 register xArc *arc; local
177 for (arc = parcs, i = narcs; --i >= 0; arc++
    [all...]
  /src/sys/arch/sparc64/dev/
cbus.c 259 int arc; local
289 arc = elem[idx].d.val;
290 str = name_blk + elem[arc].name_offset;
293 idx = arc;
299 ca->ca_id = mdesc_get_prop_val(arc, "id");
300 ca->ca_tx_ino = mdesc_get_prop_val(arc, "tx-ino");
301 ca->ca_rx_ino = mdesc_get_prop_val(arc, "rx-ino");
  /src/external/gpl3/binutils/dist/libctf/
ctf-open-bfd.c 52 ctf_archive_t *arc; local
77 if ((arc = ctf_bfdopen_ctfsect (abfd, &ctfsect, errp)) != NULL)
80 arc->ctfi_data = (void *) ctfsect.cts_data;
81 return arc;
305 struct ctf_archive *arc; local
307 if ((arc = ctf_arc_open_internal (filename, errp)) == NULL)
310 return ctf_new_archive_internal (1, 1, arc, NULL, NULL, NULL, errp);
359 ctf_archive_t *arc; local
369 arc = ctf_fdopen (fd, filename, target, errp);
371 return arc;
    [all...]
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-open-bfd.c 52 ctf_archive_t *arc; local
77 if ((arc = ctf_bfdopen_ctfsect (abfd, &ctfsect, errp)) != NULL)
80 arc->ctfi_data = (void *) ctfsect.cts_data;
81 return arc;
305 struct ctf_archive *arc; local
307 if ((arc = ctf_arc_open_internal (filename, errp)) == NULL)
310 return ctf_new_archive_internal (1, 1, arc, NULL, NULL, NULL, errp);
359 ctf_archive_t *arc; local
369 arc = ctf_fdopen (fd, filename, target, errp);
371 return arc;
    [all...]

Completed in 42 milliseconds

1 2 3