| /dflybsd-src/sys/dev/drm/i915/ |
| H A D | intel_lvds.c | 156 struct intel_lvds_pps *pps) in intel_lvds_pps_get_hw_state() argument 160 pps->powerdown_on_reset = I915_READ(PP_CONTROL(0)) & PANEL_POWER_RESET; in intel_lvds_pps_get_hw_state() 163 pps->port = (val & PANEL_PORT_SELECT_MASK) >> in intel_lvds_pps_get_hw_state() 165 pps->t1_t2 = (val & PANEL_POWER_UP_DELAY_MASK) >> in intel_lvds_pps_get_hw_state() 167 pps->t5 = (val & PANEL_LIGHT_ON_DELAY_MASK) >> in intel_lvds_pps_get_hw_state() 171 pps->t3 = (val & PANEL_POWER_DOWN_DELAY_MASK) >> in intel_lvds_pps_get_hw_state() 173 pps->tx = (val & PANEL_LIGHT_OFF_DELAY_MASK) >> in intel_lvds_pps_get_hw_state() 177 pps->divider = (val & PP_REFERENCE_DIVIDER_MASK) >> in intel_lvds_pps_get_hw_state() 189 pps->t4 = val * 1000; in intel_lvds_pps_get_hw_state() 192 pps->t1_t2 == 0 && pps->t5 == 0 && pps->t3 == 0 && pps->tx == 0) { in intel_lvds_pps_get_hw_state() [all …]
|
| H A D | intel_dsi_vbt.c | 507 struct mipi_pps_data *pps = dev_priv->vbt.dsi.pps; in intel_dsi_vbt_init() local 786 intel_dsi->backlight_off_delay = pps->bl_disable_delay / 10; in intel_dsi_vbt_init() 787 intel_dsi->backlight_on_delay = pps->bl_enable_delay / 10; in intel_dsi_vbt_init() 788 intel_dsi->panel_on_delay = pps->panel_on_delay / 10; in intel_dsi_vbt_init() 789 intel_dsi->panel_off_delay = pps->panel_off_delay / 10; in intel_dsi_vbt_init() 790 intel_dsi->panel_pwr_cycle_delay = pps->panel_power_cycle_delay / 10; in intel_dsi_vbt_init()
|
| H A D | intel_bios.c | 566 dev_priv->vbt.edp.pps = *edp_pps; in parse_edp() 742 const struct mipi_pps_data *pps; in parse_mipi_config() local 775 pps = &start->pps[panel_type]; in parse_mipi_config() 782 dev_priv->vbt.dsi.pps = kmemdup(pps, sizeof(struct mipi_pps_data), GFP_KERNEL); in parse_mipi_config() 783 if (!dev_priv->vbt.dsi.pps) { in parse_mipi_config()
|
| H A D | intel_vbt_defs.h | 882 struct mipi_pps_data pps[MAX_MIPI_CONFIGURATIONS]; member
|
| H A D | i915_drv.h | 1755 struct edp_power_seq pps; member 1780 struct mipi_pps_data *pps; member
|
| /dflybsd-src/sys/kern/ |
| H A D | kern_clock.c | 1607 pps_fetch_timeout(struct timespec *timeout, struct pps_state *pps) in pps_fetch_timeout() argument 1617 ap = &pps->ppsinfo.assert_sequence; in pps_fetch_timeout() 1618 cp = &pps->ppsinfo.clear_sequence; in pps_fetch_timeout() 1623 err = tsleep(pps, PCATCH, "ppsfch", to); in pps_fetch_timeout() 1637 pps_ioctl(u_long cmd, caddr_t data, struct pps_state *pps) in pps_ioctl() argument 1653 if (app->mode & ~pps->ppscap) in pps_ioctl() 1655 pps->ppsparam = *app; in pps_ioctl() 1659 *app = pps->ppsparam; in pps_ioctl() 1663 *(int*)data = pps->ppscap; in pps_ioctl() 1670 err = pps_fetch_timeout(&fapi->timeout, pps); in pps_ioctl() [all …]
|
| /dflybsd-src/sys/dev/misc/pps/ |
| H A D | pps.c | 38 struct pps_state pps; member 76 sc->pps.ppscap = PPS_CAPTUREASSERT | PPS_ECHOASSERT; in ppsprobe() 77 pps_init(&sc->pps); in ppsprobe() 147 sc->pps.ppsparam.mode = 0; /* PHK ??? */ in ppsclose() 169 if (sc->pps.ppsparam.mode & PPS_ECHOASSERT) in ppsintr() 171 pps_event(&sc->pps, count, PPS_CAPTUREASSERT); in ppsintr() 172 if (sc->pps.ppsparam.mode & PPS_ECHOASSERT) in ppsintr() 183 return (pps_ioctl(ap->a_cmd, ap->a_data, &sc->pps)); in ppsioctl() 204 DRIVER_MODULE(pps, ppbus, pps_driver, pps_devclass, NULL, NULL);
|
| /dflybsd-src/tools/tools/net80211/wesside/udps/ |
| H A D | udps.c | 43 int pps = 10; variable 58 delay = (int) ((double)1.0/pps*1000.0*1000.0); in own() 72 times = poll_rate*pps; in own() 138 pps = atoi(argv[1]); in main() 140 printf("Packets per second=%d\n", pps); in main()
|
| /dflybsd-src/contrib/binutils-2.27/binutils/ |
| H A D | rdcoff.c | 109 struct coff_slots **pps; in coff_get_slot() local 111 pps = &types->slots; in coff_get_slot() 120 if (*pps == NULL) in coff_get_slot() 122 *pps = (struct coff_slots *) xmalloc (sizeof **pps); in coff_get_slot() 123 memset (*pps, 0, sizeof **pps); in coff_get_slot() 125 pps = &(*pps)->next; in coff_get_slot() 129 if (*pps == NULL) in coff_get_slot() 131 *pps = (struct coff_slots *) xmalloc (sizeof **pps); in coff_get_slot() 132 memset (*pps, 0, sizeof **pps); in coff_get_slot() 135 return (*pps)->slots + indx; in coff_get_slot()
|
| /dflybsd-src/contrib/binutils-2.34/binutils/ |
| H A D | rdcoff.c | 109 struct coff_slots **pps; in coff_get_slot() local 111 pps = &types->slots; in coff_get_slot() 120 if (*pps == NULL) in coff_get_slot() 122 *pps = (struct coff_slots *) xmalloc (sizeof **pps); in coff_get_slot() 123 memset (*pps, 0, sizeof **pps); in coff_get_slot() 125 pps = &(*pps)->next; in coff_get_slot() 129 if (*pps == NULL) in coff_get_slot() 131 *pps = (struct coff_slots *) xmalloc (sizeof **pps); in coff_get_slot() 132 memset (*pps, 0, sizeof **pps); in coff_get_slot() 135 return (*pps)->slots + indx; in coff_get_slot()
|
| /dflybsd-src/usr.sbin/spray/ |
| H A D | spray.c | 199 double pps; /* packets per second */ in print_xferstats() local 203 pps = packets / xfertime; in print_xferstats() 206 printf("\t%.0f packets/sec, ", pps); in print_xferstats()
|
| /dflybsd-src/sys/sys/ |
| H A D | timepps.h | 122 void pps_event (struct pps_state *pps, sysclock_t count, int event); 123 void pps_init (struct pps_state *pps); 124 int pps_ioctl (u_long cmd, caddr_t data, struct pps_state *pps);
|
| /dflybsd-src/tools/tools/net80211/wesside/dics/ |
| H A D | dics.c | 66 int pps = 10; variable 219 stuff = poll_rate*pps; in send_stuff() 220 delay = (int) ((double)1.0/pps*1000.0*1000.0); in send_stuff() 328 pps = atoi(argv[2]); in main() 331 printf("PPS=%d\n", pps); in main()
|
| /dflybsd-src/contrib/wpa_supplicant/src/ap/ |
| H A D | wmm.c | 220 unsigned int pps, duration; in wmm_process_tspec() local 247 pps = ((le_to_host32(tspec->mean_data_rate) / 8) + val - 1) / val; in wmm_process_tspec() 249 pps); in wmm_process_tspec() 269 medium_time = (u64) surplus * pps * duration / 0x2000; in wmm_process_tspec()
|
| /dflybsd-src/sys/netgraph7/ |
| H A D | ng_source.c | 419 uint32_t pps; in ng_source_rcvmsg() local 426 pps = *(uint32_t *)msg->data; in ng_source_rcvmsg() 428 sc->stats.maxPps = pps; in ng_source_rcvmsg()
|
| /dflybsd-src/sys/dev/serial/sio/ |
| H A D | sio_private.h | 147 struct pps_state pps; member
|
| H A D | sio.c | 1228 com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR; in sioattach() 1229 pps_init(&com->pps); in sioattach() 1497 com->pps.ppsparam.mode = 0; in comhardclose() 1811 if (com->pps.ppsparam.mode & PPS_CAPTUREBOTH) { in siointr1() 1815 pps_event(&com->pps, count, in siointr1() 2165 error = pps_ioctl(ap->a_cmd, data, &com->pps); in sioioctl()
|
| /dflybsd-src/contrib/libpcap/ |
| H A D | pcap-dpdk.c | 189 uint64_t pps; member 444 …RTE_LOG(INFO,USER1, "portid:%d, RX-PPS: %-10"PRIu64" RX-Mbps: %.2lf\n", portid, pd->pps, pd->bps/1… in nic_stats_display() 464 pd->pps = (uint64_t)(delta_pkt*1e6f/delta_usec); in pcap_dpdk_stats()
|
| /dflybsd-src/contrib/libarchive/libarchive/ |
| H A D | archive_ppmd7.c | 954 CPpmd_State **pps = ps; in Ppmd7_DecodeSymbol() local 955 for (hiCnt = 0; (hiCnt += (*pps)->Freq) <= count; pps++); in Ppmd7_DecodeSymbol() 956 s = *pps; in Ppmd7_DecodeSymbol()
|
| H A D | archive_ppmd8.c | 1251 CPpmd_State **pps = ps; in Ppmd8_DecodeSymbol() local 1252 for (hiCnt = 0; (hiCnt += (*pps)->Freq) <= count; pps++); in Ppmd8_DecodeSymbol() 1253 s = *pps; in Ppmd8_DecodeSymbol()
|
| /dflybsd-src/contrib/file/magic/Magdir/ |
| H A D | ole2compounddocs | 274 !:ext ppt/pps/pot 468 !:ext ppt/pps/pot
|
| /dflybsd-src/sys/dev/netif/oce/ |
| H A D | oce_sysctl.c | 1005 port_stats = &nic_mbx->params.rsp.pps; in copy_stats_to_sc_xe201()
|
| H A D | oce_hw.h | 3192 struct pport_stats pps; member
|
| /dflybsd-src/sys/config/ |
| H A D | LINT64 | 1704 # pps Pulse per second Timing Interface 1730 device pps
|
| /dflybsd-src/etc/ |
| H A D | services | 1606 ibm-pps 1376/tcp #IBM Person to Person Software 1607 ibm-pps 1376/udp #IBM Person to Person Software
|