| /freebsd/usr.sbin/bhyve/ |
| H A D | acpi_device.c | 48 SLIST_HEAD(acpi_resource_list, acpi_resource_list_entry) crs; 67 SLIST_INIT(&dev->crs); in acpi_device_create() 88 while (!SLIST_EMPTY(&dev->crs)) { in acpi_device_destroy() 89 res = SLIST_FIRST(&dev->crs); in acpi_device_destroy() 90 SLIST_REMOVE_HEAD(&dev->crs, chain); in acpi_device_destroy() 114 SLIST_INSERT_HEAD(&dev->crs, res, chain); in acpi_device_add_res_fixed_ioport() 137 SLIST_INSERT_HEAD(&dev->crs, res, chain); in acpi_device_add_res_fixed_memory32() 167 SLIST_FOREACH(res, &dev->crs, chain) { in acpi_device_write_dsdt_crs()
|
| /freebsd/crypto/openssh/ |
| H A D | krl.c | 252 struct revoked_serial rs, *ers, *crs, *irs; in insert_serial_range() local 290 while ((crs = RB_PREV(revoked_serial_tree, rt, ers)) != NULL) { in insert_serial_range() 291 KRL_DBG(("pred %llu:%llu", crs->lo, crs->hi)); in insert_serial_range() 292 if (ers->lo != 0 && crs->hi < ers->lo - 1) in insert_serial_range() 295 if (crs->lo < ers->lo) { in insert_serial_range() 296 ers->lo = crs->lo; in insert_serial_range() 299 RB_REMOVE(revoked_serial_tree, rt, crs); in insert_serial_range() 300 free(crs); in insert_serial_range() 303 while ((crs = RB_NEXT(revoked_serial_tree, rt, ers)) != NULL) { in insert_serial_range() 304 KRL_DBG(("succ %llu:%llu", crs->lo, crs->hi)); in insert_serial_range() [all …]
|
| /freebsd/share/examples/scsi_target/ |
| H A D | scsi_target.c | 947 struct ccb_relsim crs; in rel_simq() local 949 bzero(&crs, sizeof(crs)); in rel_simq() 950 crs.ccb_h.func_code = XPT_REL_SIMQ; in rel_simq() 951 crs.release_flags = RELSIM_RELEASE_AFTER_QEMPTY; in rel_simq() 952 crs.openings = 0; in rel_simq() 953 crs.release_timeout = 0; in rel_simq() 954 crs.qfrozen_cnt = 0; in rel_simq() 955 send_ccb((union ccb *)&crs, /*priority*/0); in rel_simq()
|
| /freebsd/crypto/krb5/src/plugins/preauth/pkinit/ |
| H A D | pkinit_matching.c | 146 rule_component *crs; member 172 for (rc = rs->crs; rc != NULL;) { in free_rule_set() 430 for (trc = rs->crs; trc != NULL && trc->next != NULL; trc = trc->next); in parse_rule_set() 432 rs->crs = rc; in parse_rule_set() 576 for (rc = rs->crs; rc != NULL; rc = rc->next) { in check_all_certs() 737 for (rc = rs->crs; rc != NULL; rc = rc->next) { in pkinit_client_cert_match()
|
| /freebsd/usr.bin/lorder/tests/ |
| H A D | lorder_test.sh | 95 ar -crs $n.a $n.o 98 ar -crs z.a d.o e.o
|
| /freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | marvell,orion-pinctrl.txt | 34 mpp10 10 gpio, ge(crs) 59 mpp10 10 gpio, ge(crs) 84 mpp10 10 gpio, ge(crs)
|
| H A D | marvell,kirkwood-pinctrl.txt | 35 mii(crs) 43 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs) 73 mii(crs), sata0(prsnt) 81 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs) 117 mii(crs), sata0(prsnt) 125 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs), 166 mii(crs), sata0(prsnt) 174 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs), 228 mpp9 9 gpio, twsi(sck), uart0(cts), uart1(cts), mii(crs), 238 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs),
|
| H A D | marvell,armada-xp-pinctrl.txt | 40 mpp19 19 gpio, ge0(crs), ge1(rxd1), lcd(d19), ptp(evreq)
|
| H A D | marvell,armada-370-pinctrl.txt | 47 mpp26 26 gpio, ge0(crs), ge1(rxd1), spi1(miso)
|
| H A D | marvell,armada-38x-pinctrl.txt | 24 mpp6 6 gpio, ge0(txclkout), ge0(crs), dev(cs3)
|
| /freebsd/sys/dev/smartpqi/ |
| H A D | smartpqi_cam.c | 1166 struct ccb_relsim crs; in smartpqi_adjust_queue_depth() local 1170 memset(&crs, 0, sizeof(struct ccb_relsim)); in smartpqi_adjust_queue_depth() 1171 xpt_setup_ccb(&crs.ccb_h, path, 5); in smartpqi_adjust_queue_depth() 1172 crs.ccb_h.func_code = XPT_REL_SIMQ; in smartpqi_adjust_queue_depth() 1173 crs.ccb_h.flags = CAM_DEV_QFREEZE; in smartpqi_adjust_queue_depth() 1174 crs.release_flags = RELSIM_ADJUST_OPENINGS; in smartpqi_adjust_queue_depth() 1175 crs.openings = queue_depth; in smartpqi_adjust_queue_depth() 1176 xpt_action((union ccb *)&crs); in smartpqi_adjust_queue_depth() 1177 if(crs.ccb_h.status != CAM_REQ_CMP) { in smartpqi_adjust_queue_depth() 1178 printf("XPT_REL_SIMQ failed stat=%d\n", crs.ccb_h.status); in smartpqi_adjust_queue_depth()
|
| /freebsd/sys/cam/ |
| H A D | cam_xpt.c | 2941 struct ccb_relsim *crs; in xpt_action_default() local 2944 crs = &start_ccb->crs; in xpt_action_default() 2947 crs->ccb_h.status = CAM_DEV_NOT_THERE; in xpt_action_default() 2951 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) { in xpt_action_default() 2953 if (crs->openings > 0) { in xpt_action_default() 2954 xpt_dev_ccbq_resize(path, crs->openings); in xpt_action_default() 2958 crs->openings); in xpt_action_default() 2964 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) { in xpt_action_default() 2978 SBT_1MS * crs->release_timeout, SBT_1MS, in xpt_action_default() 2984 if ((crs->release_flags & RELSIM_RELEASE_AFTER_CMDCMPLT) != 0) { in xpt_action_default() [all …]
|
| H A D | cam_periph.c | 1356 struct ccb_relsim crs; in cam_release_devq() local 1360 memset(&crs, 0, sizeof(crs)); in cam_release_devq() 1361 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL); in cam_release_devq() 1362 crs.ccb_h.func_code = XPT_REL_SIMQ; in cam_release_devq() 1363 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0; in cam_release_devq() 1364 crs.release_flags = relsim_flags; in cam_release_devq() 1365 crs.openings = openings; in cam_release_devq() 1366 crs.release_timeout = arg; in cam_release_devq() 1367 xpt_action((union ccb *)&crs); in cam_release_devq() 1368 return (crs.qfrozen_cnt); in cam_release_devq()
|
| H A D | cam_ccb.h | 1387 struct ccb_relsim crs; member
|
| /freebsd/sys/dev/mpt/ |
| H A D | mpt_raid.c | 1071 struct ccb_relsim crs; in mpt_adjust_queue_depth() local 1073 memset(&crs, 0, sizeof(crs)); in mpt_adjust_queue_depth() 1074 xpt_setup_ccb(&crs.ccb_h, path, /*priority*/5); in mpt_adjust_queue_depth() 1075 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_adjust_queue_depth() 1076 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_adjust_queue_depth() 1077 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_adjust_queue_depth() 1078 crs.openings = mpt->raid_queue_depth; in mpt_adjust_queue_depth() 1079 xpt_action((union ccb *)&crs); in mpt_adjust_queue_depth() 1080 if (crs.ccb_h.status != CAM_REQ_CMP) in mpt_adjust_queue_depth() 1082 "with CAM status %#x\n", crs.ccb_h.status); in mpt_adjust_queue_depth()
|
| H A D | mpt_cam.c | 2426 struct ccb_relsim crs; in mpt_cam_event() local 2450 memset(&crs, 0, sizeof(crs)); in mpt_cam_event() 2451 xpt_setup_ccb(&crs.ccb_h, tmppath, 5); in mpt_cam_event() 2452 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_cam_event() 2453 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_cam_event() 2454 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_cam_event() 2455 crs.openings = pqf->CurrentDepth - 1; in mpt_cam_event() 2456 xpt_action((union ccb *)&crs); in mpt_cam_event() 2457 if (crs.ccb_h.status != CAM_REQ_CMP) { in mpt_cam_event()
|
| /freebsd/tools/build/mk/ |
| H A D | Makefile.boot | 62 ARFLAGS:= -crs
|
| /freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
| H A D | am335x-boneblack.dts | 140 "[mii crs]",
|
| /freebsd/contrib/ntp/include/ |
| H A D | mbg_gps166.h | 888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member
|
| /freebsd/sys/dev/pms/freebsd/driver/ini/src/ |
| H A D | agtiapi.c | 464 struct ccb_relsim crs; in agtiapi_adjust_queue_depth() local 465 memset(&crs, 0, sizeof(crs)); in agtiapi_adjust_queue_depth() 466 xpt_setup_ccb(&crs.ccb_h, path, 5); in agtiapi_adjust_queue_depth() 467 crs.ccb_h.func_code = XPT_REL_SIMQ; in agtiapi_adjust_queue_depth() 468 crs.ccb_h.flags = CAM_DEV_QFREEZE; in agtiapi_adjust_queue_depth() 469 crs.release_flags = RELSIM_ADJUST_OPENINGS; in agtiapi_adjust_queue_depth() 470 crs.openings = QueueDepth; in agtiapi_adjust_queue_depth() 471 xpt_action((union ccb *)&crs); in agtiapi_adjust_queue_depth() 472 if(crs.ccb_h.status != CAM_REQ_CMP) { in agtiapi_adjust_queue_depth()
|
| /freebsd/sys/netinet/ |
| H A D | tcp_ratelimit.c | 1531 const struct tcp_rate_set *crs; in tcp_rel_pacing_rate() local 1538 crs = crte->ptbl; in tcp_rel_pacing_rate() 1543 rs = __DECONST(struct tcp_rate_set *, crs); in tcp_rel_pacing_rate()
|
| /freebsd/contrib/ntp/libparse/ |
| H A D | data_mbg.c | 451 FETCH_DOUBLE(buffpp, &ephp->crs); in get_mbg_eph()
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/marvell/ |
| H A D | cp110-system-controller.txt | 140 mpp49 49 gpio, ge1(txclkout), mii(crs), spi1(miso), uart1(rxd), ge(mdio), pcie0(clkreq), sdio(v18_en), sei(out_cp2cp)
|
| /freebsd/sys/contrib/device-tree/src/arm/st/ |
| H A D | stih407-pinctrl.dtsi | 250 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | wordprocessors | 91 !:ext wpd/wpt/wkb/icr/tut/sty/tst/crs
|