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

1 2

  /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...]
  /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);
qop_jobs.c 195 int64_t adc, rdc, alc, rlc, arc; local
203 arc = -1;
253 } else if (EQUAL(*argv, "arc")) {
257 arc = -1;
259 arc = atobps(*argv);
273 adc, rdc, alc, rlc, arc, flags);
300 int64_t adc, int64_t rdc, int64_t alc, int64_t rlc, int64_t arc,
311 pri, adc, rdc, alc, rlc, arc, flags);
334 if (arc > 0)
335 sprintf(name_arc,"%.2f Mbps",(double)arc/1000000.)
    [all...]
  /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...]
gmon_io.c 537 /* Add this arc. */
629 Arc *arc; local
717 /* Dump the normalized raw arc information. */
720 for (arc = sym->cg.children; arc; arc = arc->next_child)
722 if (gmon_write_raw_arc (ofp, arc->parent->addr,
723 arc->child->addr, arc->count)
    [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);
  /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/crypto/external/apache2/openssl/dist/test/
asn1_internal_test.c 235 #define arc "1.3.6.1.4.1.16604.998866." macro
248 || !TEST_true(test_obj_create_once(arc "4", NULL, NULL))
249 || !TEST_true(test_obj_create_once(arc "5", sn_prefix "5", NULL))
251 || !TEST_true(test_obj_create_once(arc "6", NULL, ln_prefix "6"))
253 || !TEST_true(test_obj_create_once(arc "7",
  /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...]
  /src/external/gpl3/gdb/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/gdb.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...]
  /src/external/gpl2/groff/dist/src/preproc/pic/
tex.cpp 42 void arc(const position &, const position &, const position &,
258 void tex_output::arc(const position &start, const position &cent, function in class:tex_output
troff.cpp 55 void arc(const position &, const position &, const position &,
67 void simple_output::arc(const position &start, const position &cent, function in class:simple_output

Completed in 46 milliseconds

1 2