/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_module.c | 68 dt_module_symhash_insert(dt_module_t *dmp, const char *name, uint_t id) in dt_module_symhash_insert() argument 70 dt_sym_t *dsp = &dmp->dm_symchains[dmp->dm_symfree]; in dt_module_symhash_insert() 73 assert(dmp->dm_symfree < dmp->dm_nsymelems + 1); in dt_module_symhash_insert() 76 h = dt_strtab_hash(name, NULL) % dmp->dm_nsymbuckets; in dt_module_symhash_insert() 77 dsp->ds_next = dmp->dm_symbuckets[h]; in dt_module_symhash_insert() 78 dmp->dm_symbuckets[h] = dmp->dm_symfree++; in dt_module_symhash_insert() 82 dt_module_syminit32(dt_module_t *dmp) in dt_module_syminit32() argument 88 Elf32_Sym *sym = dmp->dm_symtab.cts_data; in dt_module_syminit32() 89 const char *base = dmp->dm_strtab.cts_data; in dt_module_syminit32() 90 size_t ss_size = dmp->dm_strtab.cts_size; in dt_module_syminit32() [all …]
|
H A D | dt_open.c | 1034 dt_module_t *dmp; in dt_vopen() local 1395 if ((dmp = dtp->dt_cdefs = dt_module_create(dtp, "C")) == NULL) in dt_vopen() 1398 if ((dmp->dm_ctfp = ctf_create(&dtp->dt_ctferr)) == NULL) in dt_vopen() 1402 dmp->dm_name, (void *)dmp->dm_ctfp); in dt_vopen() 1404 (void) ctf_setmodel(dmp->dm_ctfp, dtp->dt_conf.dtc_ctfmodel); in dt_vopen() 1405 ctf_setspecific(dmp->dm_ctfp, dmp); in dt_vopen() 1407 dmp->dm_flags = DT_DM_LOADED; /* fake up loaded bit */ in dt_vopen() 1408 dmp->dm_modid = -1; /* no module ID */ in dt_vopen() 1416 err = ctf_add_integer(dmp->dm_ctfp, CTF_ADD_ROOT, in dt_vopen() 1419 err = ctf_add_float(dmp->dm_ctfp, CTF_ADD_ROOT, in dt_vopen() [all …]
|
H A D | dt_decl.c | 816 dt_module_t *dmp; in dt_decl_type() local 831 dmp = yypcb->pcb_idepth ? dtp->dt_cdefs : dtp->dt_ddefs; in dt_decl_type() 842 (dmp = dt_module_lookup_by_ctf(dtp, ddp->dd_ctfp)) != NULL) { in dt_decl_type() 843 tip->dtt_object = dmp->dm_name; in dt_decl_type() 932 if (tip->dtt_ctfp != dmp->dm_ctfp && in dt_decl_type() 933 tip->dtt_ctfp != ctf_parent_file(dmp->dm_ctfp)) { in dt_decl_type() 935 tip->dtt_type = ctf_add_type(dmp->dm_ctfp, in dt_decl_type() 937 tip->dtt_ctfp = dmp->dm_ctfp; in dt_decl_type() 956 tip->dtt_object = dmp->dm_name; in dt_decl_type() 957 tip->dtt_ctfp = dmp->dm_ctfp; in dt_decl_type() [all …]
|
H A D | dt_print.c | 743 dt_module_t *dmp; in dt_print_prepare() local 764 dmp = dt_module_lookup_by_name(dtp, object); in dt_print_prepare() 765 if (dmp == NULL) in dt_print_prepare() 768 if (dmp->dm_pid != 0) { in dt_print_prepare() 771 if (s == NULL || libid > dmp->dm_nctflibs) in dt_print_prepare() 773 ctfp = dmp->dm_libctfp[libid]; in dt_print_prepare() 775 ctfp = dt_module_getctf(dtp, dmp); in dt_print_prepare()
|
H A D | dt_pid.c | 856 dt_module_t *dmp; in dt_pid_get_types() local 883 dmp = dt_module_create(dtp, pdp->dtpd_provider); in dt_pid_get_types() 884 if (dmp == NULL) { in dt_pid_get_types() 889 if (dt_module_load(dtp, dmp) != 0) { in dt_pid_get_types() 899 fp = dt_module_getctflib(dtp, dmp, pdp->dtpd_mod); in dt_pid_get_types() 905 p = dt_proc_grab(dtp, dmp->dm_pid, 0, PGRAB_RDONLY | PGRAB_FORCE); in dt_pid_get_types()
|
H A D | dt_parser.c | 276 dt_module_t *dmp; in dt_type_pointer() local 286 dmp = dtp->dt_cdefs; in dt_type_pointer() 288 dmp = dtp->dt_ddefs; in dt_type_pointer() 290 if (ctfp != dmp->dm_ctfp && ctfp != ctf_parent_file(dmp->dm_ctfp) && in dt_type_pointer() 291 (type = ctf_add_type(dmp->dm_ctfp, ctfp, type)) == CTF_ERR) { in dt_type_pointer() 292 dtp->dt_ctferr = ctf_errno(dmp->dm_ctfp); in dt_type_pointer() 296 ptr = ctf_add_pointer(dmp->dm_ctfp, CTF_ADD_ROOT, type); in dt_type_pointer() 298 if (ptr == CTF_ERR || ctf_update(dmp->dm_ctfp) == CTF_ERR) { in dt_type_pointer() 299 dtp->dt_ctferr = ctf_errno(dmp->dm_ctfp); in dt_type_pointer() 303 tip->dtt_object = dmp->dm_name; in dt_type_pointer() [all …]
|
H A D | dt_cc.c | 707 dt_module_t *dmp; in dt_action_trace() local 710 dmp = dt_module_lookup_by_ctf(dtp, dret->dn_ctfp); in dt_action_trace() 712 n = snprintf(NULL, 0, "%s`%ld", dmp->dm_name, dret->dn_type) + 1; in dt_action_trace() 713 if (dmp->dm_pid != 0) { in dt_action_trace() 714 ctflib = dt_module_getlibid(dtp, dmp, dret->dn_ctfp); in dt_action_trace() 716 n = snprintf(NULL, 0, "%s`%d`%ld", dmp->dm_name, in dt_action_trace() 719 n = snprintf(NULL, 0, "%s`%ld", dmp->dm_name, in dt_action_trace() 725 (void) snprintf(sdp->dtsd_strdata, n, "%s`%ld", dmp->dm_name, in dt_action_trace() 727 if (dmp->dm_pid != 0) { in dt_action_trace() 729 dmp->dm_name, ctflib, dret->dn_type); in dt_action_trace() [all …]
|
H A D | dt_aggregate.c | 393 dt_module_t *dmp; in dt_aggregate_mod() local 407 for (dmp = dt_list_next(&dtp->dt_modlist); dmp != NULL; in dt_aggregate_mod() 408 dmp = dt_list_next(dmp)) { in dt_aggregate_mod() 409 if (*pc - dmp->dm_text_va < dmp->dm_text_size) { in dt_aggregate_mod() 410 *pc = dmp->dm_text_va; in dt_aggregate_mod()
|
/freebsd/sys/fs/devfs/ |
H A D | devfs_vnops.c | 348 * On success devfs_populate_vp() returns with dmp->dm_lock held. 354 struct devfs_mount *dmp; in devfs_populate_vp() local 359 dmp = VFSTODEVFS(vp->v_mount); in devfs_populate_vp() 360 if (!devfs_populate_needed(dmp)) { in devfs_populate_vp() 361 sx_xlock(&dmp->dm_lock); in devfs_populate_vp() 367 sx_xlock(&dmp->dm_lock); in devfs_populate_vp() 368 DEVFS_DMP_HOLD(dmp); in devfs_populate_vp() 372 devfs_populate(dmp); in devfs_populate_vp() 374 sx_xunlock(&dmp->dm_lock); in devfs_populate_vp() 376 sx_xlock(&dmp->dm_lock); in devfs_populate_vp() [all …]
|
H A D | devfs.h | 181 #define DEVFS_DMP_HOLD(dmp) ((dmp)->dm_holdcnt++) argument 182 #define DEVFS_DMP_DROP(dmp) (--(dmp)->dm_holdcnt == 0) argument
|
H A D | devfs_vfsops.c | 209 struct devfs_mount *dmp; in devfs_root() local 211 dmp = VFSTODEVFS(mp); in devfs_root() 212 sx_xlock(&dmp->dm_lock); in devfs_root() 213 error = devfs_allocv(dmp->dm_rootdir, mp, LK_EXCLUSIVE, &vp); in devfs_root()
|
H A D | devfs_devs.c | 265 devfs_vmkdir(struct devfs_mount *dmp, char *name, int namelen, in devfs_vmkdir() argument 304 sx_assert(&dmp->dm_lock, SX_XLOCKED); in devfs_vmkdir() 307 devfs_rules_apply(dmp, dd); in devfs_vmkdir() 311 mac_devfs_create_directory(dmp->dm_mount, name, namelen, dd); in devfs_vmkdir()
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | bcm-ns-usb3-phy.yaml | 30 usb3-dmp-syscon: 33 Phandle to the DMP (Device Management Plugin) syscon 41 - usb3-dmp-syscon 55 usb3-dmp-syscon = <&usb3_dmp>;
|
H A D | bcm-ns-usb3-phy.txt | 7 - usb3-dmp-syscon: phandle to syscon with DMP (Device Management Plugin) 27 usb3-dmp-syscon = <&usb3_dmp>;
|
/freebsd/lib/libmp/ |
H A D | mpasbn.c | 228 * Compute qmp=nmp/dmp and rmp=nmp%dmp. 231 _mdiv(const char *msg, const MINT *nmp, const MINT *dmp, MINT *qmp, MINT *rmp, in _mdiv() argument 242 BN_ERRCHECK(msg, BN_div(q, r, nmp->bn, dmp->bn, c)); in _mdiv() 250 mp_mdiv(const MINT *nmp, const MINT *dmp, MINT *qmp, MINT *rmp) in mp_mdiv() argument 257 _mdiv("mdiv", nmp, dmp, qmp, rmp, c); in mp_mdiv() 567 MINT *dmp, *rmp; in _sdiv() local 577 dmp = _itom(msg, d); in _sdiv() 579 BN_ERRCHECK(msg, BN_div(q, r, nmp->bn, dmp->bn, c)); in _sdiv() 588 _mfree(msg, dmp); in _sdiv()
|
H A D | libmp.3 | 142 .Fn mp_mdiv "const MINT *nmp" "const MINT *dmp" "MINT *qmp" "MINT *rmp" ; 151 .Fa dmp 161 .Fa ( dmp
|
/freebsd/sys/contrib/device-tree/src/arm64/synaptics/ |
H A D | berlin4ct-dmp.dts | 13 model = "Marvell BG4CT DMP board"; 14 compatible = "marvell,berlin4ct-dmp", "marvell,berlin4ct", "marvell,berlin";
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_s390x.c | 80 const BIGNUM *dmp, const BIGNUM *dmq, const BIGNUM *iqmp) in s390x_crt() argument 120 || BN_bn2binpad(dmp, crt.bp_key, size + 8) == -1 in s390x_crt() 156 const BIGNUM *dmp, const BIGNUM *dmq, const BIGNUM *iqmp) in s390x_crt() argument
|
/freebsd/sys/contrib/device-tree/src/arm/synaptics/ |
H A D | berlin2q-marvell-dmp.dts | 12 model = "Marvell BG2-Q DMP"; 13 compatible = "marvell,berlin2q-dmp", "marvell,berlin2q", "marvell,berlin";
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | espressif | 15 !:mime application/x-tasmota-dmp 16 !:ext dmp
|
H A D | misctools | 114 # https://filext.com/file-extension/DMP 115 !:mime application/x-dmp 116 !:ext dmp/mdmp
|
H A D | windows | 102 # Reference: http://mark0.net/download/triddefs_xml.7z/defs/d/dmp.trid.xml 105 # and verified by like Windows Kit `Dumpchk.exe 043022-18703-01.dmp` 106 # and partly by NirSoft `BlueScreenView.exe 043022-18703-01.dmp` 112 !:mime application/x-ms-dmp 113 # like: Mini111013-01.dmp 114 !:ext dmp 171 # Reference: http://mark0.net/download/triddefs_xml.7z/defs/d/dmp-64.trid.xml113o 176 !:mime application/x-ms-dmp 177 # like: c:\Windows\Minidump\020322-18890-01.dmp c:\Windows\MEMORY.DMP 178 !:ext dmp [all …]
|
/freebsd/sys/dev/bhnd/bcma/ |
H A D | bcma_dmp.h | 29 * PL-368 Device Management Plugin (DMP) Registers & Constants 31 * The "DMP" core used in Broadcom HND devices has been described 98 /* DMP agent registers */
|
H A D | bcma_eromreg.h | 118 #define BCMA_EROM_REGION_TYPE_SWRAP 2 /* region maps to a slave port's DMP agent/wrapper */ 119 #define BCMA_EROM_REGION_TYPE_MWRAP 3 /* region maps to a master port's DMP agent/wrapper */
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound_cache.cmd | 13 set fname="unbound_cache.dmp"
|