/Linux-v6.6/drivers/clk/sunxi-ng/ |
D | ccu_nm.c | 31 unsigned long rate, 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() 50 nm->n = best_n; in ccu_nm_find_best() 51 nm->m = best_m; in ccu_nm_find_best() 58 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_disable() local 60 return ccu_gate_helper_disable(&nm->common, nm->enable); in ccu_nm_disable() 65 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_enable() local 67 return ccu_gate_helper_enable(&nm->common, nm->enable); in ccu_nm_enable() 72 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_is_enabled() local [all …]
|
/Linux-v6.6/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-v6.6/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() 268 struct fscrypt_name nm = { .disk_name = FSTR_INIT((char *)name, strlen(name))}; in ubifs_xattr_set() local 279 if (fname_len(&nm) > UBIFS_MAX_NLEN) in ubifs_xattr_set() [all …]
|
D | dir.c | 184 const struct fscrypt_name *nm) in dbg_check_name() argument 188 if (le16_to_cpu(dent->nlen) != fname_len(nm)) in dbg_check_name() 190 if (memcmp(dent->name, fname_name(nm), fname_len(nm))) in dbg_check_name() 203 struct fscrypt_name nm; in ubifs_lookup() local 207 err = fscrypt_prepare_lookup(dir, dentry, &nm); in ubifs_lookup() 214 if (fname_len(&nm) > UBIFS_MAX_NLEN) { in ubifs_lookup() 225 if (fname_name(&nm) == NULL) { in ubifs_lookup() 226 if (nm.hash & ~UBIFS_S_KEY_HASH_MASK) in ubifs_lookup() 228 dent_key_init_hash(c, &key, dir->i_ino, nm.hash); in ubifs_lookup() 229 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 | 568 const struct fscrypt_name *nm) in matches_name() argument 591 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in matches_name() 593 if (nlen == fname_len(nm)) in matches_name() 595 else if (nlen < fname_len(nm)) in matches_name() 738 const struct fscrypt_name *nm) in resolve_collision() argument 742 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 803 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 825 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision() 856 const struct fscrypt_name *nm) in fallible_matches_name() argument 884 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-v6.6/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-v6.6/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-v6.6/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 564 struct fcoe_netdev_mapping *nm = NULL, *tmp; in fcoe_transport_detach() local 576 list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) { in fcoe_transport_detach() 577 if (nm->ft == ft) { in fcoe_transport_detach() 580 ft->name, nm->netdev->name); in fcoe_transport_detach() 581 list_del(&nm->list); in fcoe_transport_detach() 582 kfree(nm); in fcoe_transport_detach() 639 struct fcoe_netdev_mapping *nm; in fcoe_add_netdev_mapping() local 641 nm = kmalloc(sizeof(*nm), GFP_KERNEL); in fcoe_add_netdev_mapping() 642 if (!nm) { in fcoe_add_netdev_mapping() 647 nm->netdev = netdev; in fcoe_add_netdev_mapping() [all …]
|
/Linux-v6.6/drivers/gpu/drm/msm/ |
D | Kconfig | 110 bool "Enable DSI 28nm PHY driver in MSM DRM" 114 Choose this option if the 28nm DSI PHY is used on the platform. 117 bool "Enable DSI 20nm PHY driver in MSM DRM" 121 Choose this option if the 20nm DSI PHY is used on the platform. 124 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM" 128 Choose this option if the 28nm DSI PHY 8960 variant is used on the 132 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)" 139 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)" 146 bool "Enable DSI 7nm/5nm/4nm PHY driver in MSM DRM"
|
/Linux-v6.6/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 | 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-v6.6/scripts/ |
D | recordmcount.pl | 124 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV; 155 $nm = 'nm' if (!$nm); 405 open (IN, "$nm $inputfile|") || die "error running $nm";
|
D | relocs_check.sh | 9 nm="$2" 16 undef_weak_symbols=$($nm "$vmlinux" | awk '$1 ~ /w/ { print $2 }')
|
D | generate_initcall_order.pl | 14 my $nm = $ENV{'NM'} || die "$0: ERROR: NM not set?"; 102 open(my $fh, "\"$nm\" --defined-only \"$file\" 2>/dev/null |") 103 or die "$0: ERROR: failed to execute \"$nm\": $!";
|
D | bloat-o-meter | 30 nm = "nm" 32 nm = "{}nm".format(args.prefix) 34 with os.popen("{} --size-sort {}".format(nm, file)) as f:
|
/Linux-v6.6/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-v6.6/arch/x86/entry/vdso/ |
D | checkundef.sh | 2 nm="$1" 4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/Linux-v6.6/arch/x86/um/vdso/ |
D | checkundef.sh | 3 nm="$1" 5 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/Linux-v6.6/drivers/usb/host/ |
D | xhci-debugfs.h | 73 #define dump_register(nm) \ argument 75 .name = __stringify(nm), \ 76 .offset = REG_ ##nm, \
|
/Linux-v6.6/arch/sparc/kernel/ |
D | ioport.c | 323 const char *nm; in sparc_io_proc_show() local 326 if ((nm = r->name) == NULL) nm = "???"; in sparc_io_proc_show() 329 (unsigned long long)r->end, nm); in sparc_io_proc_show()
|
/Linux-v6.6/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-v6.6/drivers/phy/marvell/ |
D | Makefile | 13 obj-$(CONFIG_PHY_PXA_28NM_HSIC) += phy-pxa-28nm-hsic.o 14 obj-$(CONFIG_PHY_PXA_28NM_USB2) += phy-pxa-28nm-usb2.o
|
/Linux-v6.6/arch/arc/include/asm/ |
D | linkage.h | 36 .macro ARCFP_DATA nm 42 .global \nm
|