Home
last modified time | relevance | path

Searched full:dsc (Results 1 – 25 of 52) sorted by relevance

123

/freebsd/sys/dev/ips/
H A Dips_disk.c68 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 Ddbus_new_introspect.c86 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 Ddbus_new_helpers.c29 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 Ddso_vms.c82 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 DLPdir_vms.c65 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/crypto/openssl/crypto/bio/
H A Dbss_log.c309 struct dsc$descriptor_s opc_dsc; in xsyslog()
330 struct dsc$descriptor_s buf_dsc; in xsyslog()
361 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog()
362 buf_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog()
363 buf_dsc.dsc$a_pointer = buf; in xsyslog()
364 buf_dsc.dsc$w_length = sizeof(buf) - 1; in xsyslog()
375 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog()
376 opc_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog()
377 opc_dsc.dsc$a_pointer = (OPCDEF_TYPE) opcdef_p; in xsyslog()
378 opc_dsc.dsc$w_length = len + 8; in xsyslog()
/freebsd/sys/contrib/device-tree/Bindings/display/mediatek/
H A Dmediatek,dsc.yaml4 $id: http://devicetree.org/schemas/display/mediatek/mediatek,dsc.yaml#
7 title: mediatek display DSC controller
14 The DSC standard is a specification of the algorithms used for
17 video bit stream. DSC is designed for real-time systems with
24 - mediatek,mt8195-disp-dsc
34 - description: DSC Wrapper Clock
73 compatible = "mediatek,mt8195-disp-dsc";
/freebsd/sys/dev/vmm/
H A Dvmm_dev.c277 struct devmem_softc *dsc; in get_memseg() local
286 SLIST_FOREACH(dsc, &sc->devmem, link) { in get_memseg()
287 if (dsc->segid == mseg->segid) in get_memseg()
290 KASSERT(dsc != NULL, ("%s: devmem segment %d not found", in get_memseg()
292 error = copystr(dsc->name, mseg->name, len, NULL); in get_memseg()
869 struct devmem_softc *dsc; in vmmdev_destroy() local
881 SLIST_FOREACH(dsc, &sc->devmem, link) { in vmmdev_destroy()
882 KASSERT(dsc->cdev != NULL, ("devmem cdev already destroyed")); in vmmdev_destroy()
883 devmem_destroy(dsc); in vmmdev_destroy()
891 while ((dsc = SLIST_FIRST(&sc->devmem)) != NULL) { in vmmdev_destroy()
[all …]
/freebsd/usr.sbin/bhyve/
H A Dpci_e82545.c1066 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/contrib/capsicum-test/
H A D.gitignore12 libcap*.dsc
16 casper*.dsc
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/
H A Dredacted_origin.ksh43 typeset dsC=$POOL/rm@snap
53 log_must zfs redact $dsA BCD $dsB $dsC $dsD
58 log_must zfs redact $dsA BC $dsB $dsC
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu_send.c2368 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/crypto/openssl/apps/lib/
H A Dvms_term_sock.c287 struct dsc$descriptor AscTimeDesc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, NULL}; in CreateSocketPair()
357 AscTimeDesc.dsc$w_length = strlen (AscTimeBuff); in CreateSocketPair()
358 AscTimeDesc.dsc$a_pointer = AscTimeBuff; in CreateSocketPair()
/freebsd/sys/dev/cfi/
H A Dcfi_disk.c289 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/sys/contrib/device-tree/Bindings/display/panel/
H A Dlg,sw43408.yaml14 required DSC (Display Stream Compression) and has rounded corners.
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph.h126 explicit GraphRenderer(const FuncIdConversionHelper &FuncIdHelper, bool DSC) in GraphRenderer() argument
127 : FuncIdHelper(FuncIdHelper), DeduceSiblingCalls(DSC), in GraphRenderer()
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra186-display.yaml89 - const: dsc
140 clock-names = "disp", "dsc", "hub";
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2307 static bool isTypeSpecifier(DeclSpecContext DSC) { in isTypeSpecifier() argument
2308 switch (DSC) { in isTypeSpecifier()
2349 isDefiningTypeSpecifierContext(DeclSpecContext DSC, bool IsCPlusPlus) { in isDefiningTypeSpecifierContext() argument
2350 switch (DSC) { in isDefiningTypeSpecifierContext()
2380 static bool isOpaqueEnumDeclarationContext(DeclSpecContext DSC) { in isOpaqueEnumDeclarationContext() argument
2381 switch (DSC) { in isOpaqueEnumDeclarationContext()
2406 static bool isClassTemplateDeductionContext(DeclSpecContext DSC) { in isClassTemplateDeductionContext() argument
2407 switch (DSC) { in isClassTemplateDeductionContext()
2431 getImplicitTypenameContext(DeclSpecContext DSC) { in getImplicitTypenameContext() argument
2432 switch (DSC) { in getImplicitTypenameContext()
[all …]
/freebsd/contrib/netbsd-tests/usr.bin/bzip2/
H A Dt_bzip2.sh46 bzip2 -dsc $(atf_get_srcdir)/d_sample3.bz2
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp407 enum class StringLayout { CSD, DSC }; enumerator
435 ? StringLayout::DSC in ExtractLibcxxStringInfo()
461 uint8_t mode_mask = layout == StringLayout::DSC ? 0x80 : 1; in ExtractLibcxxStringInfo()
468 size = (layout == StringLayout::DSC) ? size_mode_value in ExtractLibcxxStringInfo()
/freebsd/contrib/file/magic/Magdir/
H A Dprinter12 >>11 string >\0 DSC level %.3s
23 >>12 string >\0 DSC level %.3s
/freebsd/share/misc/
H A Dusb_vendors2238 7006 Dsc 1.3 Smart Camera Device
4627 0402 DSC D100 (ptp)
4631 0406 DSC D70 (ptp)
4636 040e DSC D70s (ptp)
5126 0108 FinePix F601 Zoom (DSC)
5128 010a FinePix S602 (Pro) Zoom (DSC)
5131 010e FinePix F402 Zoom (DSC)
5133 0110 FinePix M603 Zoom (DSC)
5135 0112 FinePix A202, A200 Zoom (DSC)
5137 0114 FinePix F401 Zoom (DSC)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/firmware/
H A Dfsl,scu.yaml21 with the LSIO DSC IP bus. The SC firmware will communicate with this MU
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dfsl,imx8qxp-pixel-link-msi-bus.yaml16 clock and reset through the i.MX8 Distributed Slave System Controller (DSC).
/freebsd/sys/dev/usb/
H A Dusbdi.h378 #define USB_DEV_SUBCLASS(dsc) \ argument
379 .match_flag_dev_subclass = 1, .bDeviceSubClass = (dsc)

123