Searched refs:scc (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libgen/common/
H A Dgmatch.c64 wchar_t scc, c; local
72 scc = n;
74 scc = cl;
81 return (scc == 0);
87 if (scc <= 0)
110 if (scc < lc || scc > c)
118 if (lc <= scc &&
119 scc <= c)
128 if (scc !
[all...]
/freebsd-9.3-release/sys/modules/scc/
H A DMakefile3 .PATH: ${.CURDIR}/../../dev/scc
12 KMOD= scc
17 MFILES= dev/ofw/ofw_bus_if.m dev/scc/scc_if.m \
/freebsd-9.3-release/sys/dev/siba/
H A Dsiba_core.c178 struct siba_cc *scc; local
194 scc = &siba->siba_cc;
195 if (scc->scc_dev != NULL) {
196 siba_cc_pmu_init(scc);
197 siba_cc_power_init(scc);
198 siba_cc_clock(scc, SIBA_CLOCK_FAST);
199 siba_cc_powerup_delay(scc);
760 siba_cc_clock(struct siba_cc *scc, enum siba_clock clock) argument
762 struct siba_dev_softc *sd = scc->scc_dev;
774 (scc
907 siba_cc_pmu_init(struct siba_cc *scc) argument
1020 siba_cc_power_init(struct siba_cc *scc) argument
1049 siba_cc_powerup_delay(struct siba_cc *scc) argument
1065 siba_cc_clockfreq(struct siba_cc *scc, int max) argument
1105 siba_cc_pmu1_pll0_init(struct siba_cc *scc, uint32_t freq) argument
1187 siba_cc_pmu0_pll0_init(struct siba_cc *scc, uint32_t xtalfreq) argument
1274 siba_cc_clksrc(struct siba_cc *scc) argument
1322 siba_cc_pll_read(struct siba_cc *scc, uint32_t offset) argument
1330 siba_cc_pll_write(struct siba_cc *scc, uint32_t offset, uint32_t value) argument
1725 struct siba_cc *scc; local
2044 siba_cc_suspend(struct siba_cc *scc) argument
2051 siba_cc_resume(struct siba_cc *scc) argument
2100 struct siba_cc *scc = &siba->siba_cc; local
2146 struct siba_cc *scc = &siba->siba_cc; local
[all...]
H A Dsibavar.h169 #define SIBA_CC_READ32(scc, offset) \
170 siba_read_4_sub((scc)->scc_dev, offset)
171 #define SIBA_CC_WRITE32(scc, offset, val) \
172 siba_write_4_sub((scc)->scc_dev, offset, val)
173 #define SIBA_CC_MASK32(scc, offset, mask) \
174 SIBA_CC_WRITE32(scc, offset, SIBA_CC_READ32(scc, offset) & (mask))
175 #define SIBA_CC_SET32(scc, offset, set) \
176 SIBA_CC_WRITE32(scc, offset, SIBA_CC_READ32(scc, offse
[all...]
/freebsd-9.3-release/sys/dev/scc/
H A Dscc_bfe_sbus.c43 #include <dev/scc/scc_bfe.h>
93 DRIVER_MODULE(scc, fhc, scc_sbus_driver, scc_devclass, NULL, NULL);
94 DRIVER_MODULE(scc, sbus, scc_sbus_driver, scc_devclass, NULL, NULL);
H A Dscc_bfe_ebus.c43 #include <dev/scc/scc_bfe.h>
97 DRIVER_MODULE(scc, ebus, scc_ebus_driver, scc_devclass, NULL, NULL);
H A Dscc_bfe_macio.c43 #include <dev/scc/scc_bfe.h>
93 DRIVER_MODULE(scc, macio, scc_macio_driver, scc_devclass, NULL, NULL);
H A Dscc_bfe_quicc.c43 #include <dev/scc/scc_bfe.h>
99 DRIVER_MODULE(scc, quicc, scc_quicc_driver, scc_devclass, NULL, NULL);
H A Dscc_dev_quicc.c38 #include <dev/scc/scc_bfe.h>
39 #include <dev/scc/scc_bus.h>
H A Dscc_dev_sab82532.c38 #include <dev/scc/scc_bfe.h>
39 #include <dev/scc/scc_bus.h>
H A Dscc_dev_z8530.c38 #include <dev/scc/scc_bfe.h>
39 #include <dev/scc/scc_bus.h>
H A Dscc_core.c43 #include <dev/scc/scc_bfe.h>
44 #include <dev/scc/scc_bus.h>
49 const char scc_driver_name[] = "scc";
/freebsd-9.3-release/contrib/opie/
H A Dglob.c140 register int scc; local
145 scc = *s++ & TRIM;
158 if (lc <= scc && scc <= *p++)
161 if (scc == (lc = cc))
180 return (scc == 0);
183 if ((c & TRIM) != scc)
188 if (scc == 0)
553 register int scc; local
561 scc
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dddg.c665 /* Algorithm for computing the recurrence_length of an scc. We assume at
669 set_recurrence_length (ddg_scc_ptr scc, ddg_ptr g)
674 for (j = 0; j < scc->num_backarcs; j++)
676 ddg_edge_ptr backarc = scc->backarcs[j];
682 length = longest_simple_path (g, src->cuid, dest->cuid, scc->nodes);
691 scc->recurrence_length = result;
695 and mark edges that belong to this scc as IN_SCC. */
699 ddg_scc_ptr scc;
703 scc = (ddg_scc_ptr) xmalloc (sizeof (struct ddg_scc));
704 scc
666 set_recurrence_length(ddg_scc_ptr scc, ddg_ptr g) argument
696 ddg_scc_ptr scc; local
727 free_scc(ddg_scc_ptr scc) argument
752 add_backarc_to_scc(ddg_scc_ptr scc, ddg_edge_ptr e) argument
762 add_scc_to_ddg(ddg_all_sccs_ptr g, ddg_scc_ptr scc) argument
859 ddg_scc_ptr scc; local
[all...]
H A Dmodulo-sched.c1733 ddg_scc_ptr scc = all_sccs->sccs[i];
1736 find_nodes_on_paths (on_path, g, prev_sccs, scc->nodes);
1737 sbitmap_a_or_b (tmp, scc->nodes, on_path);
1740 find_nodes_on_paths (on_path, g, scc->nodes, prev_sccs);
1750 /* Handle the remaining nodes that do not belong to any scc. Each call
1904 order_nodes_in_scc (ddg_ptr g, sbitmap nodes_ordered, sbitmap scc,
1922 if (sbitmap_a_and_b_cg (tmp, predecessors, scc))
1927 else if (sbitmap_a_and_b_cg (tmp, successors, scc))
1937 if ((u = find_max_asap (g, scc)) >= 0)
1958 sbitmap_a_and_b (tmp, v_node_succs, scc);
1729 ddg_scc_ptr scc = all_sccs->sccs[i]; local
1900 order_nodes_in_scc(ddg_ptr g, sbitmap nodes_ordered, sbitmap scc, int * node_order, int pos) argument
[all...]
/freebsd-9.3-release/sys/dev/uart/
H A Duart_bus_scc.c41 #include <dev/scc/scc_bus.h>
118 DRIVER_MODULE(uart, scc, uart_scc_driver, uart_devclass, 0, 0);
/freebsd-9.3-release/usr.bin/at/
H A Dparsetime.c144 static char scc; /* scanner - count of remaining arguments */ variable
181 scc = argc;
209 if (scc < 1)
213 scc--;
582 if (scc < 1) {
/freebsd-9.3-release/sys/powerpc/conf/
H A DMPC85XX82 device scc
H A DGENERIC116 device scc
H A DGENERIC64116 device scc
/freebsd-9.3-release/contrib/telnet/telnet/
H A Dtelnet.c1642 int scc;
1647 scc = 0;
1650 if (scc == 0) {
1657 scc = ring_full_consecutive(&netiring);
1658 if (scc == 0) {
1664 c = *sbp++ & 0xff, scc--; count++;
1696 if (scc > 0) {
1703 sbp++, scc--; count++;
1708 sbp++, scc--; count++;
1637 int scc; local
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c1588 int scc; local
1593 scc = 0;
1596 if (scc == 0) {
1603 scc = ring_full_consecutive(&netiring);
1604 if (scc == 0) {
1610 c = *sbp++ & 0xff, scc--; count++;
1642 if (scc > 0) {
1649 sbp++, scc--; count++;
1654 sbp++, scc--; count++;
/freebsd-9.3-release/etc/
H A Dprotocols106 scc-sp 96 SCC-SP # Semaphore Communications Sec. Pro.
/freebsd-9.3-release/sys/sparc64/conf/
H A DGENERIC144 device scc # Serial communications controllers.
/freebsd-9.3-release/share/man/man4/
H A DMakefile387 scc.4 \

Completed in 397 milliseconds

12