/Linux-v5.10/drivers/clk/sunxi-ng/ |
D | ccu_nm.c | 31 struct _ccu_nm *nm) in ccu_nm_find_best() argument 37 for (_n = nm->min_n; _n <= nm->max_n; _n++) { in ccu_nm_find_best() 38 for (_m = nm->min_m; _m <= nm->max_m; _m++) { in ccu_nm_find_best() 53 nm->n = best_n; in ccu_nm_find_best() 54 nm->m = best_m; in ccu_nm_find_best() 59 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_disable() local 61 return ccu_gate_helper_disable(&nm->common, nm->enable); in ccu_nm_disable() 66 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_enable() local 68 return ccu_gate_helper_enable(&nm->common, nm->enable); in ccu_nm_enable() 73 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_is_enabled() local [all …]
|
/Linux-v5.10/drivers/ntb/test/ |
D | ntb_msi_test.c | 28 struct ntb_msit_ctx *nm; member 33 struct ntb_msit_ctx *nm; member 46 struct ntb_msit_ctx *nm = isr_ctx->nm; in ntb_msit_isr() local 48 dev_dbg(&nm->ntb->dev, "Interrupt Occurred: %d", in ntb_msit_isr() 58 struct ntb_msit_ctx *nm = container_of(work, struct ntb_msit_ctx, in ntb_msit_setup_work() local 65 ret = ntb_msi_setup_mws(nm->ntb); in ntb_msit_setup_work() 67 dev_err(&nm->ntb->dev, "Unable to setup MSI windows: %d\n", in ntb_msit_setup_work() 73 nm->isr_ctx[i].irq_idx = i; in ntb_msit_setup_work() 74 nm->isr_ctx[i].nm = nm; in ntb_msit_setup_work() 76 if (!nm->isr_ctx[i].irq_num) { in ntb_msit_setup_work() [all …]
|
/Linux-v5.10/fs/ubifs/ |
D | xattr.c | 82 const struct fscrypt_name *nm, const void *value, int size) in create_xattr() argument 102 names_len = host_ui->xattr_names + host_ui->xattr_cnt + fname_len(nm) + 1; in create_xattr() 139 host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm)); in create_xattr() 141 host_ui->xattr_names += fname_len(nm); in create_xattr() 149 if (strcmp(fname_name(nm), UBIFS_XATTR_NAME_ENCRYPTION_CONTEXT) == 0) in create_xattr() 152 err = ubifs_jnl_update(c, host, nm, inode, 0, 1); in create_xattr() 165 host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm)); in create_xattr() 167 host_ui->xattr_names -= fname_len(nm); in create_xattr() 270 struct fscrypt_name nm = { .disk_name = FSTR_INIT((char *)name, strlen(name))}; in ubifs_xattr_set() local 281 if (fname_len(&nm) > UBIFS_MAX_NLEN) in ubifs_xattr_set() [all …]
|
D | dir.c | 182 const struct fscrypt_name *nm) in dbg_check_name() argument 186 if (le16_to_cpu(dent->nlen) != fname_len(nm)) in dbg_check_name() 188 if (memcmp(dent->name, fname_name(nm), fname_len(nm))) in dbg_check_name() 201 struct fscrypt_name nm; in ubifs_lookup() local 205 err = fscrypt_prepare_lookup(dir, dentry, &nm); in ubifs_lookup() 211 if (fname_len(&nm) > UBIFS_MAX_NLEN) { in ubifs_lookup() 222 if (fname_name(&nm) == NULL) { in ubifs_lookup() 223 if (nm.hash & ~UBIFS_S_KEY_HASH_MASK) in ubifs_lookup() 225 dent_key_init_hash(c, &key, dir->i_ino, nm.hash); in ubifs_lookup() 226 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash); in ubifs_lookup() [all …]
|
D | key.h | 148 const struct fscrypt_name *nm) in dent_key_init() argument 150 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init() 183 const struct fscrypt_name *nm) in dent_key_init_flash() argument 186 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init_flash() 217 const struct fscrypt_name *nm) in xent_key_init() argument 219 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init() 234 ino_t inum, const struct fscrypt_name *nm) in xent_key_init_flash() argument 237 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init_flash()
|
D | tnc.c | 531 const struct fscrypt_name *nm) in matches_name() argument 554 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in matches_name() 556 if (nlen == fname_len(nm)) in matches_name() 558 else if (nlen < fname_len(nm)) in matches_name() 701 const struct fscrypt_name *nm) in resolve_collision() argument 705 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 766 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 788 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision() 819 const struct fscrypt_name *nm) in fallible_matches_name() argument 847 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in fallible_matches_name() [all …]
|
D | journal.c | 539 const struct fscrypt_name *nm, const struct inode *inode, in ubifs_jnl_update() argument 556 dlen = UBIFS_DENT_NODE_SZ + fname_len(nm) + 1; in ubifs_jnl_update() 591 if (fname_name(nm) == NULL) in ubifs_jnl_update() 592 dent_key_init_hash(c, &dent_key, dir->i_ino, nm->hash); in ubifs_jnl_update() 594 dent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update() 597 xent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update() 603 dent->nlen = cpu_to_le16(fname_len(nm)); in ubifs_jnl_update() 604 memcpy(dent->name, fname_name(nm), fname_len(nm)); in ubifs_jnl_update() 605 dent->name[fname_len(nm)] = '\0'; in ubifs_jnl_update() 650 if (fname_name(nm) == NULL) in ubifs_jnl_update() [all …]
|
/Linux-v5.10/Documentation/hwmon/ |
D | coretemp.rst | 11 - 0xe (Pentium M DC), 0xf (Core 2 DC 65nm), 12 - 0x16 (Core 2 SC 65nm), 0x17 (Penryn 45nm), 70 22nm Core i5/i7 Processors 81 32nm Core i3/i5/i7 Processors 88 32nm Core i7 Extreme Processors 91 32nm Celeron Processors 95 32nm Atom Processors 103 45nm Xeon Processors 5400 Quad-Core 109 45nm Xeon Processors 5200 Dual-Core 116 45nm Atom Processors [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/display/msm/ |
D | dsi.txt | 85 * "qcom,dsi-phy-28nm-hpm" 86 * "qcom,dsi-phy-28nm-lp" 87 * "qcom,dsi-phy-20nm" 88 * "qcom,dsi-phy-28nm-8960" 89 * "qcom,dsi-phy-14nm" 90 * "qcom,dsi-phy-14nm-660" 91 * "qcom,dsi-phy-10nm" 92 * "qcom,dsi-phy-10nm-8998" 93 * "qcom,dsi-phy-7nm" 94 * "qcom,dsi-phy-7nm-8150" [all …]
|
/Linux-v5.10/security/selinux/ss/ |
D | mls.c | 39 char *nm; in mls_compute_context_len() local 59 nm = sym_name(p, SYM_CATS, prev); in mls_compute_context_len() 60 len += strlen(nm) + 1; in mls_compute_context_len() 62 nm = sym_name(p, SYM_CATS, i); in mls_compute_context_len() 63 len += strlen(nm) + 1; in mls_compute_context_len() 69 nm = sym_name(p, SYM_CATS, prev); in mls_compute_context_len() 70 len += strlen(nm) + 1; in mls_compute_context_len() 93 char *scontextp, *nm; in mls_sid_to_context() local 123 nm = sym_name(p, SYM_CATS, prev); in mls_sid_to_context() 124 strcpy(scontextp, nm); in mls_sid_to_context() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/bus/ |
D | brcm,gisb-arb.txt | 6 "brcm,bcm7278-gisb-arb" for V7 28nm chips 7 "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for other 28nm chips 8 "brcm,bcm7435-gisb-arb" for newer 40nm chips 9 "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips 10 "brcm,bcm7038-gisb-arb" for 130nm chips
|
/Linux-v5.10/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 563 struct fcoe_netdev_mapping *nm = NULL, *tmp; in fcoe_transport_detach() local 575 list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) { in fcoe_transport_detach() 576 if (nm->ft == ft) { in fcoe_transport_detach() 579 ft->name, nm->netdev->name); in fcoe_transport_detach() 580 list_del(&nm->list); in fcoe_transport_detach() 581 kfree(nm); in fcoe_transport_detach() 638 struct fcoe_netdev_mapping *nm; in fcoe_add_netdev_mapping() local 640 nm = kmalloc(sizeof(*nm), GFP_KERNEL); in fcoe_add_netdev_mapping() 641 if (!nm) { in fcoe_add_netdev_mapping() 646 nm->netdev = netdev; in fcoe_add_netdev_mapping() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/ufs/ |
D | ufs-qcom.txt | 11 "qcom,ufs-phy-qmp-20nm" for 20nm ufs phy, 12 "qcom,ufs-phy-qmp-14nm" for legacy 14nm ufs phy, 13 "qcom,msm8996-ufs-phy-qmp-14nm" for 14nm ufs phy 37 compatible = "qcom,ufs-phy-qmp-20nm";
|
/Linux-v5.10/drivers/gpu/drm/msm/ |
D | Kconfig | 88 bool "Enable DSI 28nm PHY driver in MSM DRM" 92 Choose this option if the 28nm DSI PHY is used on the platform. 95 bool "Enable DSI 20nm PHY driver in MSM DRM" 99 Choose this option if the 20nm DSI PHY is used on the platform. 102 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM" 106 Choose this option if the 28nm DSI PHY 8960 variant is used on the 110 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)" 117 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)" 124 bool "Enable DSI 7nm PHY driver in MSM DRM (used by SM8150/SM8250)"
|
/Linux-v5.10/arch/powerpc/tools/ |
D | unrel_branch_check.sh | 10 nm="$2" 15 end_intr=0x$($nm -p "$vmlinux" | 24 sim=0x$($nm -p "$vmlinux" |
|
D | relocs_check.sh | 20 nm="$2" 27 undef_weak_symbols=$($nm "$vmlinux" | awk '$1 ~ /w/ { print $2 }')
|
D | head_check.sh | 45 nm="$1" 49 $nm "$vmlinux" | grep -e " [TA] _stext$" -e " t start_first_256B$" -e " a text_start$" -e " t start…
|
/Linux-v5.10/arch/arc/kernel/ |
D | troubleshoot.c | 93 char *nm = "?"; in show_faulting_vma() local 96 nm = file_path(vma->vm_file, buf, ARC_PATH_MAX-1); in show_faulting_vma() 97 if (IS_ERR(nm)) in show_faulting_vma() 98 nm = "?"; in show_faulting_vma() 103 nm, vma->vm_start, vma->vm_end); in show_faulting_vma()
|
/Linux-v5.10/arch/x86/um/vdso/ |
D | checkundef.sh | 3 nm="$1" 5 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/Linux-v5.10/arch/x86/entry/vdso/ |
D | checkundef.sh | 2 nm="$1" 4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/Linux-v5.10/scripts/ |
D | recordmcount.pl | 124 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV; 155 $nm = 'nm' if (!$nm); 442 open (IN, "$nm $inputfile|") || die "error running $nm";
|
/Linux-v5.10/drivers/usb/host/ |
D | xhci-debugfs.h | 73 #define dump_register(nm) \ argument 75 .name = __stringify(nm), \ 76 .offset = REG_ ##nm, \
|
/Linux-v5.10/drivers/phy/marvell/ |
D | Makefile | 11 obj-$(CONFIG_PHY_PXA_28NM_HSIC) += phy-pxa-28nm-hsic.o 12 obj-$(CONFIG_PHY_PXA_28NM_USB2) += phy-pxa-28nm-usb2.o
|
/Linux-v5.10/drivers/tee/optee/ |
D | supp.c | 298 size_t nm; in supp_pop_req() local 309 nm = 1; in supp_pop_req() 312 nm = 0; in supp_pop_req() 319 if ((num_params - nm) != req->num_params) in supp_pop_req() 324 *num_meta = nm; in supp_pop_req()
|
/Linux-v5.10/arch/arc/include/asm/ |
D | linkage.h | 36 .macro ARCFP_DATA nm 42 .global \nm
|