| /freebsd-12-stable/cddl/contrib/opensolaris/lib/libgen/common/ |
| D | gmatch.c | 65 wchar_t scc, c; in gmatch() local 73 scc = n; in gmatch() 75 scc = cl; in gmatch() 82 return (scc == 0); in gmatch() 88 if (scc <= 0) in gmatch() 111 if (scc < lc || scc > c) in gmatch() 119 if (lc <= scc && in gmatch() 120 scc <= c) in gmatch() 129 if (scc != lc) in gmatch() 136 if (scc == lc) in gmatch() [all …]
|
| /freebsd-12-stable/sys/dev/bhnd/cores/chipc/pwrctl/ |
| D | bhnd_pwrctl_subr.c | 495 uint32_t scc; in bhnd_pwrctl_setclk() local 508 scc = bhnd_bus_read_4(sc->res, CHIPC_PLL_SLOWCLK_CTL); in bhnd_pwrctl_setclk() 510 scc = bhnd_bus_read_4(sc->res, CHIPC_SYS_CLK_CTL); in bhnd_pwrctl_setclk() 516 scc &= ~(CHIPC_SCC_XC | CHIPC_SCC_FS | CHIPC_SCC_IP); in bhnd_pwrctl_setclk() 517 scc |= CHIPC_SCC_IP; in bhnd_pwrctl_setclk() 523 scc |= CHIPC_SYCC_HR; in bhnd_pwrctl_setclk() 529 bhnd_bus_write_4(sc->res, CHIPC_PLL_SLOWCLK_CTL, scc); in bhnd_pwrctl_setclk() 531 bhnd_bus_write_4(sc->res, CHIPC_SYS_CLK_CTL, scc); in bhnd_pwrctl_setclk() 539 scc &= ~(CHIPC_SCC_FS | CHIPC_SCC_IP | CHIPC_SCC_XC); in bhnd_pwrctl_setclk() 540 if ((scc & CHIPC_SCC_SS_MASK) != CHIPC_SCC_SS_XTAL) in bhnd_pwrctl_setclk() [all …]
|
| /freebsd-12-stable/contrib/opie/ |
| D | glob.c | 140 register int scc; variable 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; variable 561 scc = *s++ & TRIM; 577 if (lc <= scc && scc <= *p++) [all …]
|
| /freebsd-12-stable/contrib/gcc/ |
| D | ddg.c | 666 set_recurrence_length (ddg_scc_ptr scc, ddg_ptr g) in set_recurrence_length() argument 671 for (j = 0; j < scc->num_backarcs; j++) in set_recurrence_length() 673 ddg_edge_ptr backarc = scc->backarcs[j]; in set_recurrence_length() 679 length = longest_simple_path (g, src->cuid, dest->cuid, scc->nodes); in set_recurrence_length() 688 scc->recurrence_length = result; in set_recurrence_length() 696 ddg_scc_ptr scc; in create_scc() local 700 scc = (ddg_scc_ptr) xmalloc (sizeof (struct ddg_scc)); in create_scc() 701 scc->backarcs = NULL; in create_scc() 702 scc->num_backarcs = 0; in create_scc() 703 scc->nodes = sbitmap_alloc (g->num_nodes); in create_scc() [all …]
|
| D | modulo-sched.c | 1729 ddg_scc_ptr scc = all_sccs->sccs[i]; in order_nodes_of_sccs() local 1732 find_nodes_on_paths (on_path, g, prev_sccs, scc->nodes); in order_nodes_of_sccs() 1733 sbitmap_a_or_b (tmp, scc->nodes, on_path); in order_nodes_of_sccs() 1736 find_nodes_on_paths (on_path, g, scc->nodes, prev_sccs); in order_nodes_of_sccs() 1900 order_nodes_in_scc (ddg_ptr g, sbitmap nodes_ordered, sbitmap scc, in order_nodes_in_scc() argument 1918 if (sbitmap_a_and_b_cg (tmp, predecessors, scc)) in order_nodes_in_scc() 1923 else if (sbitmap_a_and_b_cg (tmp, successors, scc)) in order_nodes_in_scc() 1933 if ((u = find_max_asap (g, scc)) >= 0) in order_nodes_in_scc() 1954 sbitmap_a_and_b (tmp, v_node_succs, scc); in order_nodes_in_scc() 1965 sbitmap_a_and_b (workset, predecessors, scc); in order_nodes_in_scc() [all …]
|
| /freebsd-12-stable/sys/modules/scc/ |
| D | Makefile | 3 .PATH: ${SRCTOP}/sys/dev/scc 12 KMOD= scc
|
| /freebsd-12-stable/usr.bin/at/ |
| D | parsetime.c | 147 static char scc; /* scanner - count of remaining arguments */ variable 184 scc = argc; in init_scanner() 212 if (scc < 1) in token() 216 scc--; in token() 615 if (scc < 1) { in parsetime()
|
| /freebsd-12-stable/sys/dev/scc/ |
| D | scc_bfe_sbus.c | 95 DRIVER_MODULE(scc, fhc, scc_sbus_driver, scc_devclass, NULL, NULL); 96 DRIVER_MODULE(scc, sbus, scc_sbus_driver, scc_devclass, NULL, NULL);
|
| D | scc_if.m | 26 # $FreeBSD: stable/12/sys/dev/scc/scc_if.m 188174 2009-02-05 19:32:34Z imp $ 34 #include <dev/scc/scc_bfe.h> 39 INTERFACE scc;
|
| D | scc_bfe_macio.c | 95 DRIVER_MODULE(scc, macio, scc_macio_driver, scc_devclass, NULL, NULL);
|
| D | scc_bfe_ebus.c | 99 DRIVER_MODULE(scc, ebus, scc_ebus_driver, scc_devclass, NULL, NULL);
|
| D | scc_bfe_quicc.c | 101 DRIVER_MODULE(scc, quicc, scc_quicc_driver, scc_devclass, NULL, NULL);
|
| /freebsd-12-stable/contrib/telnet/telnet/ |
| D | telnet.c | 1670 int scc; in telrcv() local 1675 scc = 0; in telrcv() 1678 if (scc == 0) { in telrcv() 1685 scc = ring_full_consecutive(&netiring); in telrcv() 1686 if (scc == 0) { in telrcv() 1692 c = *sbp++ & 0xff, scc--; count++; in telrcv() 1724 if (scc > 0) { in telrcv() 1731 sbp++, scc--; count++; in telrcv() 1736 sbp++, scc--; count++; in telrcv()
|
| /freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/ |
| D | telnet.c | 1588 int scc; in telrcv() local 1593 scc = 0; in telrcv() 1596 if (scc == 0) { in telrcv() 1603 scc = ring_full_consecutive(&netiring); in telrcv() 1604 if (scc == 0) { in telrcv() 1610 c = *sbp++ & 0xff, scc--; count++; in telrcv() 1642 if (scc > 0) { in telrcv() 1649 sbp++, scc--; count++; in telrcv() 1654 sbp++, scc--; count++; in telrcv()
|
| /freebsd-12-stable/tools/kerneldoc/subsys/ |
| D | Doxyfile-dev_scc | 14 INPUT = $(DOXYGEN_SRC_PATH)/dev/scc/ \
|
| /freebsd-12-stable/sys/dev/uart/ |
| D | uart_bus_scc.c | 120 DRIVER_MODULE(uart, scc, uart_scc_driver, uart_devclass, 0, 0);
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | vexpress-v2p-ca15_a7.dts | 212 scc@7fff0000 { 213 compatible = "arm,vexpress-scc,v2p-ca15_a7", "arm,vexpress-scc";
|
| D | imx25.dtsi | 440 scc: crypto@53fac000 { label 441 compatible = "fsl,imx25-scc";
|
| /freebsd-12-stable/sys/powerpc/conf/ |
| D | MPC85XXSPE | 97 device scc
|
| D | MPC85XX | 97 device scc
|
| D | QORIQ64 | 105 device scc
|
| D | GENERIC | 137 device scc
|
| /freebsd-12-stable/sys/dev/igc/ |
| D | igc_hw.h | 275 u64 scc; member
|
| /freebsd-12-stable/lib/libc/net/ |
| D | protocols | 107 scc-sp 96 SCC-SP # Semaphore Communications Sec. Pro.
|
| /freebsd-12-stable/sys/conf/ |
| D | files.powerpc | 105 dev/scc/scc_bfe_macio.c optional scc powermac
|