| /freebsd/sys/dev/ips/ |
| H A D | ips_disk.c | 68 ipsdisk_softc_t *dsc = dp->d_drv1; in ipsd_open() local 70 dsc->state |= IPS_DEV_OPEN; in ipsd_open() 71 DEVICE_PRINTF(2, dsc->dev, "I'm open\n"); in ipsd_open() 77 ipsdisk_softc_t *dsc = dp->d_drv1; in ipsd_close() local 78 dsc->state &= ~IPS_DEV_OPEN; in ipsd_close() 79 DEVICE_PRINTF(2, dsc->dev, "I'm closed for the day\n"); in ipsd_close() 86 ipsdisk_softc_t *dsc; in ipsd_finish() local 87 dsc = iobuf->bio_disk->d_drv1; in ipsd_finish() 90 ipsdisk_softc_t *dsc; in ipsd_finish() local 91 dsc = iobuf->bio_disk->d_drv1; in ipsd_finish() [all …]
|
| /freebsd/contrib/wpa/wpa_supplicant/dbus/ |
| H A D | dbus_new_introspect.c | 86 const struct wpa_dbus_property_desc *dsc) in add_property() argument 90 dsc->dbus_property, dsc->type, in add_property() 91 dsc->getter ? "read" : "", in add_property() 92 dsc->setter ? "write" : ""); in add_property() 99 const struct wpa_dbus_method_desc *dsc; in extract_interfaces_methods() local 102 for (dsc = methods; dsc && dsc->dbus_method; dsc++) { in extract_interfaces_methods() 103 iface = add_interface(list, dsc->dbus_interface); in extract_interfaces_methods() 105 add_entry(iface->xml, "method", dsc->dbus_method, in extract_interfaces_methods() 106 dsc->args, 1); in extract_interfaces_methods() 114 const struct wpa_dbus_signal_desc *dsc; in extract_interfaces_signals() local [all …]
|
| H A D | dbus_new_helpers.c | 29 const struct wpa_dbus_property_desc *dsc; in fill_dict_with_properties() local 31 for (dsc = props; dsc && dsc->dbus_property; dsc++) { in fill_dict_with_properties() 33 if (os_strncmp(dsc->dbus_interface, interface, in fill_dict_with_properties() 38 if (dsc->getter == NULL) in fill_dict_with_properties() 46 &dsc->dbus_property)) in fill_dict_with_properties() 50 if (!dsc->getter(dsc, &entry_iter, error, user_data)) { in fill_dict_with_properties() 53 __func__, dsc->dbus_interface, in fill_dict_with_properties() 54 dsc->dbus_property); in fill_dict_with_properties() 160 const struct wpa_dbus_property_desc *dsc, in properties_get() argument 172 if (dsc->getter == NULL) { in properties_get() [all …]
|
| /freebsd/crypto/openssl/crypto/dso/ |
| H A D | dso_vms.c | 82 struct dsc$descriptor_s filename_dsc; 88 struct dsc$descriptor_s imagename_dsc; 208 p->filename_dsc.dsc$w_length = strlen(p->filename); in vms_load() 209 p->filename_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in vms_load() 210 p->filename_dsc.dsc$b_class = DSC$K_CLASS_S; in vms_load() 211 p->filename_dsc.dsc$a_pointer = p->filename; in vms_load() 212 p->imagename_dsc.dsc$w_length = strlen(p->imagename); in vms_load() 213 p->imagename_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in vms_load() 214 p->imagename_dsc.dsc$b_class = DSC$K_CLASS_S; in vms_load() 215 p->imagename_dsc.dsc$a_pointer = p->imagename; in vms_load() [all …]
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | LPdir_vms.c | 65 struct dsc$descriptor_d filespec_dsc; 66 struct dsc$descriptor_d result_dsc; 139 (*ctx)->filespec_dsc.dsc$w_length = filespeclen; in LP_find_file() 140 (*ctx)->filespec_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in LP_find_file() 141 (*ctx)->filespec_dsc.dsc$b_class = DSC$K_CLASS_S; in LP_find_file() 142 (*ctx)->filespec_dsc.dsc$a_pointer = CTX_FILESPEC; in LP_find_file() 145 (*ctx)->result_dsc.dsc$w_length = 0; in LP_find_file() 146 (*ctx)->result_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in LP_find_file() 147 (*ctx)->result_dsc.dsc$b_class = DSC$K_CLASS_D; in LP_find_file() 148 (*ctx)->result_dsc.dsc$a_pointer = 0; in LP_find_file() [all …]
|
| /freebsd/sys/dev/vmm/ |
| H A D | vmm_dev.c | 259 struct devmem_softc *dsc; in get_memseg() local 268 SLIST_FOREACH(dsc, &sc->devmem, link) { in get_memseg() 269 if (dsc->segid == mseg->segid) in get_memseg() 272 KASSERT(dsc != NULL, ("%s: devmem segment %d not found", in get_memseg() 274 error = copystr(dsc->name, mseg->name, len, NULL); in get_memseg() 854 struct devmem_softc *dsc; in vmmdev_destroy() local 867 SLIST_FOREACH(dsc, &sc->devmem, link) { in vmmdev_destroy() 868 KASSERT(dsc->cdev != NULL, ("devmem cdev already destroyed")); in vmmdev_destroy() 869 devmem_destroy(dsc); in vmmdev_destroy() 877 while ((dsc = SLIST_FIRST(&sc->devmem)) != NULL) { in vmmdev_destroy() [all …]
|
| /freebsd/crypto/openssl/crypto/bio/ |
| H A D | bss_log.c | 269 struct dsc$descriptor_s opc_dsc; in xsyslog() 290 struct dsc$descriptor_s buf_dsc; in xsyslog() 321 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog() 322 buf_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog() 323 buf_dsc.dsc$a_pointer = buf; in xsyslog() 324 buf_dsc.dsc$w_length = sizeof(buf) - 1; in xsyslog() 335 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog() 336 opc_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog() 337 opc_dsc.dsc$a_pointer = (OPCDEF_TYPE)opcdef_p; in xsyslog() 338 opc_dsc.dsc$w_length = len + 8; in xsyslog()
|
| /freebsd/usr.sbin/bhyve/ |
| H A D | pci_e82545.c | 1066 union e1000_tx_udesc *dsc; in e82545_transmit_done() local 1069 dsc = &sc->esc_txdesc[head]; in e82545_transmit_done() 1070 if (dsc->td.lower.data & E1000_TXD_CMD_RS) { in e82545_transmit_done() 1071 dsc->td.upper.data |= E1000_TXD_STAT_DD; in e82545_transmit_done() 1087 union e1000_tx_udesc *dsc; in e82545_transmit() local 1110 dsc = &sc->esc_txdesc[head]; in e82545_transmit() 1111 dtype = e82545_txdesc_type(dsc->td.lower.data); in e82545_transmit() 1118 head, dsc->td.buffer_addr, in e82545_transmit() 1119 dsc->td.upper.data, dsc->td.lower.data); in e82545_transmit() 1121 sc->esc_txctx = dsc->cd; in e82545_transmit() [all …]
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | dmu_send.c | 2368 dmu_send_cookie_t dsc = {0}; in dmu_send_impl() local 2464 dsc.dsc_drr = drr; in dmu_send_impl() 2465 dsc.dsc_dso = dspp->dso; in dmu_send_impl() 2466 dsc.dsc_os = os; in dmu_send_impl() 2467 dsc.dsc_off = dspp->off; in dmu_send_impl() 2468 dsc.dsc_toguid = dsl_dataset_phys(to_ds)->ds_guid; in dmu_send_impl() 2469 dsc.dsc_fromtxg = fromtxg; in dmu_send_impl() 2470 dsc.dsc_pending_op = PENDING_NONE; in dmu_send_impl() 2471 dsc.dsc_featureflags = featureflags; in dmu_send_impl() 2472 dsc.dsc_resume_object = dspp->resumeobj; in dmu_send_impl() [all …]
|
| /freebsd/sys/dev/cfi/ |
| H A D | cfi_disk.c | 289 struct cfi_disk_softc *dsc; in cfi_disk_getattr() local 296 dsc = bp->bio_disk->d_drv1; in cfi_disk_getattr() 297 sc = dsc->parent; in cfi_disk_getattr()
|
| /freebsd/crypto/openssl/apps/lib/ |
| H A D | vms_term_sock.c | 300 struct dsc$descriptor AscTimeDesc = { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, NULL }; in CreateSocketPair() 370 AscTimeDesc.dsc$w_length = strlen(AscTimeBuff); in CreateSocketPair() 371 AscTimeDesc.dsc$a_pointer = AscTimeBuff; in CreateSocketPair()
|
| /freebsd/contrib/netbsd-tests/usr.bin/bzip2/ |
| H A D | t_bzip2.sh | 46 bzip2 -dsc $(atf_get_srcdir)/d_sample3.bz2
|
| /freebsd/sys/dev/usb/ |
| H A D | usbdi.h | 378 #define USB_DEV_SUBCLASS(dsc) \ argument 379 .match_flag_dev_subclass = 1, .bDeviceSubClass = (dsc)
|
| /freebsd/sys/fs/nfsserver/ |
| H A D | nfs_nfsdport.c | 4664 struct nfsrvdscreate *dsc; in start_dscreate() local 4666 dsc = (struct nfsrvdscreate *)arg; in start_dscreate() 4667 dsc->err = nfsrv_dscreate(dsc->dvp, &dsc->createva, &dsc->va, &dsc->fh, in start_dscreate() 4668 dsc->pf, NULL, NULL, dsc->tcred, dsc->p, NULL); in start_dscreate() 4669 dsc->done = 1; in start_dscreate() 4670 NFSD_DEBUG(4, "start_dscreate: err=%d\n", dsc->err); in start_dscreate() 4680 struct nfsrvdscreate *dsc, *tdsc = NULL; in nfsrv_pnfscreate() local 4744 dsc = NULL; in nfsrv_pnfscreate() 4746 tdsc = dsc = malloc(sizeof(*dsc) * (mirrorcnt - 1), M_TEMP, in nfsrv_pnfscreate() 4820 for (tdsc = dsc, i = 0; i < mirrorcnt - 1; i++, tdsc++) { in nfsrv_pnfscreate() [all …]
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_stats.cpp | 107 double dsc = double(sampleCount); in operator +=() local 108 double dscBydnsc = dsc / dnsc; in operator +=()
|
| H A D | kmp_alloc.cpp | 2211 kmp_mem_descr_t *dsc = in ___kmp_fast_free() local 2214 kmp_info_t *q_th = (kmp_info_t *)(dsc->ptr_aligned); in ___kmp_fast_free() 2216 dsc->size_allocated + 1; // new size in case we add current task in ___kmp_fast_free()
|
| /freebsd/contrib/elftoolchain/libdwarf/ |
| H A D | dwarf_dump.c | 721 dwarf_get_DSC_name(unsigned dsc, const char **s) in dwarf_get_DSC_name() argument 726 switch (dsc) { in dwarf_get_DSC_name()
|
| /freebsd/sys/dev/dc/ |
| H A D | if_dc.c | 4087 struct dc_softc *dsc; in dc_check_multiport() local 4106 dsc = device_get_softc(child); in dc_check_multiport() 4110 bcopy(dsc->dc_eaddr, sc->dc_eaddr, ETHER_ADDR_LEN); in dc_check_multiport() 4114 if (DC_IS_INTEL(sc) && dsc->dc_srom != NULL && in dc_check_multiport() 4117 sc->dc_romwidth = dsc->dc_romwidth; in dc_check_multiport() 4125 bcopy(dsc->dc_srom, sc->dc_srom, in dc_check_multiport()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | ntp_util.c | 313 struct dsc$descriptor driftdsc = { in write_stats()
|
| /freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt8188.dtsi | 3082 dsc0: dsc@1c009000 { 3083 compatible = "mediatek,mt8188-disp-dsc", "mediatek,mt8195-disp-dsc";
|
| H A D | mt8195.dtsi | 3374 dsc0: dsc@1c009000 { 3375 compatible = "mediatek,mt8195-disp-dsc";
|
| /freebsd/crypto/krb5/src/util/et/ |
| H A D | com_err.texinfo | 208 error_table dsc
|
| /freebsd/sys/contrib/device-tree/src/arm64/nvidia/ |
| H A D | tegra186.dtsi | 1585 clock-names = "disp", "dsc", "hub";
|