Home
last modified time | relevance | path

Searched refs:nm (Results 1 – 25 of 93) sorted by relevance

1234

/Linux-v4.19/drivers/clk/sunxi-ng/
Dccu_nm.c23 struct _ccu_nm *nm) in ccu_nm_find_best() argument
29 for (_n = nm->min_n; _n <= nm->max_n; _n++) { in ccu_nm_find_best()
30 for (_m = nm->min_m; _m <= nm->max_m; _m++) { in ccu_nm_find_best()
44 nm->n = best_n; in ccu_nm_find_best()
45 nm->m = best_m; in ccu_nm_find_best()
50 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_disable() local
52 return ccu_gate_helper_disable(&nm->common, nm->enable); in ccu_nm_disable()
57 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_enable() local
59 return ccu_gate_helper_enable(&nm->common, nm->enable); in ccu_nm_enable()
64 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_is_enabled() local
[all …]
/Linux-v4.19/Documentation/hwmon/
Dcoretemp7 CPUID: family 0x6, models 0xe (Pentium M DC), 0xf (Core 2 DC 65nm),
8 0x16 (Core 2 SC 65nm), 0x17 (Penryn 45nm),
57 22nm Core i5/i7 Processors
68 32nm Core i3/i5/i7 Processors
75 32nm Core i7 Extreme Processors
78 32nm Celeron Processors
82 32nm Atom Processors
90 45nm Xeon Processors 5400 Quad-Core
96 45nm Xeon Processors 5200 Dual-Core
103 45nm Atom Processors
[all …]
/Linux-v4.19/fs/ubifs/
Dxattr.c100 const struct fscrypt_name *nm, const void *value, int size) in create_xattr() argument
120 names_len = host_ui->xattr_names + host_ui->xattr_cnt + fname_len(nm) + 1; in create_xattr()
157 host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
159 host_ui->xattr_names += fname_len(nm); in create_xattr()
167 if (strcmp(fname_name(nm), UBIFS_XATTR_NAME_ENCRYPTION_CONTEXT) == 0) in create_xattr()
170 err = ubifs_jnl_update(c, host, nm, inode, 0, 1); in create_xattr()
183 host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
185 host_ui->xattr_names -= fname_len(nm); in create_xattr()
288 struct fscrypt_name nm = { .disk_name = FSTR_INIT((char *)name, strlen(name))}; in ubifs_xattr_set() local
299 if (fname_len(&nm) > UBIFS_MAX_NLEN) in ubifs_xattr_set()
[all …]
Ddir.c200 const struct fscrypt_name *nm) in dbg_check_name() argument
204 if (le16_to_cpu(dent->nlen) != fname_len(nm)) in dbg_check_name()
206 if (memcmp(dent->name, fname_name(nm), fname_len(nm))) in dbg_check_name()
219 struct fscrypt_name nm; in ubifs_lookup() local
227 err = fscrypt_setup_filename(dir, &dentry->d_name, 1, &nm); in ubifs_lookup()
231 if (fname_len(&nm) > UBIFS_MAX_NLEN) { in ubifs_lookup()
242 if (nm.hash) { in ubifs_lookup()
243 ubifs_assert(c, fname_len(&nm) == 0); in ubifs_lookup()
244 ubifs_assert(c, fname_name(&nm) == NULL); in ubifs_lookup()
245 dent_key_init_hash(c, &key, dir->i_ino, nm.hash); in ubifs_lookup()
[all …]
Dkey.h160 const struct fscrypt_name *nm) in dent_key_init() argument
162 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init()
165 ubifs_assert(c, !nm->hash && !nm->minor_hash); in dent_key_init()
196 const struct fscrypt_name *nm) in dent_key_init_flash() argument
199 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init_flash()
230 const struct fscrypt_name *nm) in xent_key_init() argument
232 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init()
247 ino_t inum, const struct fscrypt_name *nm) in xent_key_init_flash() argument
250 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init_flash()
Dtnc.c539 const struct fscrypt_name *nm) in matches_name() argument
562 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in matches_name()
564 if (nlen == fname_len(nm)) in matches_name()
566 else if (nlen < fname_len(nm)) in matches_name()
709 const struct fscrypt_name *nm) in resolve_collision() argument
713 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
774 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
796 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision()
827 const struct fscrypt_name *nm) in fallible_matches_name() argument
855 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in fallible_matches_name()
[all …]
Djournal.c540 const struct fscrypt_name *nm, const struct inode *inode, in ubifs_jnl_update() argument
554 dlen = UBIFS_DENT_NODE_SZ + fname_len(nm) + 1; in ubifs_jnl_update()
586 if (nm->hash) in ubifs_jnl_update()
587 dent_key_init_hash(c, &dent_key, dir->i_ino, nm->hash); in ubifs_jnl_update()
589 dent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update()
592 xent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update()
598 dent->nlen = cpu_to_le16(fname_len(nm)); in ubifs_jnl_update()
599 memcpy(dent->name, fname_name(nm), fname_len(nm)); in ubifs_jnl_update()
600 dent->name[fname_len(nm)] = '\0'; in ubifs_jnl_update()
633 if (nm->hash) in ubifs_jnl_update()
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/bus/
Dbrcm,gisb-arb.txt6 "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-v4.19/security/selinux/ss/
Dmls.c39 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-v4.19/drivers/scsi/fcoe/
Dfcoe_transport.c574 struct fcoe_netdev_mapping *nm = NULL, *tmp; in fcoe_transport_detach() local
586 list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) { in fcoe_transport_detach()
587 if (nm->ft == ft) { in fcoe_transport_detach()
590 ft->name, nm->netdev->name); in fcoe_transport_detach()
591 list_del(&nm->list); in fcoe_transport_detach()
592 kfree(nm); in fcoe_transport_detach()
649 struct fcoe_netdev_mapping *nm; in fcoe_add_netdev_mapping() local
651 nm = kmalloc(sizeof(*nm), GFP_KERNEL); in fcoe_add_netdev_mapping()
652 if (!nm) { in fcoe_add_netdev_mapping()
657 nm->netdev = netdev; in fcoe_add_netdev_mapping()
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/ufs/
Dufs-qcom.txt11 "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
36 compatible = "qcom,ufs-phy-qmp-20nm";
/Linux-v4.19/Documentation/devicetree/bindings/display/msm/
Ddsi.txt85 * "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-10nm"
95 For DSI 28nm HPM/LP/8960 PHYs and 20nm PHY:
99 For DSI 14nm and 10nm PHYs:
109 For 28nm HPM/LP, 28nm 8960 PHYs:
111 For 20nm PHY:
[all …]
/Linux-v4.19/drivers/gpu/drm/msm/
DKconfig71 bool "Enable DSI 28nm PHY driver in MSM DRM"
75 Choose this option if the 28nm DSI PHY is used on the platform.
78 bool "Enable DSI 20nm PHY driver in MSM DRM"
82 Choose this option if the 20nm DSI PHY is used on the platform.
85 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM"
89 Choose this option if the 28nm DSI PHY 8960 variant is used on the
93 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)"
100 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)"
/Linux-v4.19/arch/arc/kernel/
Dtroubleshoot.c86 char *nm = buf; in show_faulting_vma() local
100 nm = file_path(vma->vm_file, buf, PAGE_SIZE - 1); in show_faulting_vma()
101 if (IS_ERR(nm)) in show_faulting_vma()
102 nm = "?"; in show_faulting_vma()
108 nm, vma->vm_start, vma->vm_end); in show_faulting_vma()
/Linux-v4.19/arch/x86/entry/vdso/
Dcheckundef.sh2 nm="$1"
4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/Linux-v4.19/arch/x86/um/vdso/
Dcheckundef.sh3 nm="$1"
5 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/Linux-v4.19/scripts/
Drecordmcount.pl124 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
150 $nm = 'nm' if (!$nm);
434 open (IN, "$nm $inputfile|") || die "error running $nm";
Dnamespace.pl69 my $nm = ($ENV{'NM'} || "nm") . " -p";
261 open (my $nmdata, "$nm $basename|")
262 or die "$nm $fullname failed $!\n";
/Linux-v4.19/drivers/usb/host/
Dxhci-debugfs.h73 #define dump_register(nm) \ argument
75 .name = __stringify(nm), \
76 .offset = REG_ ##nm, \
/Linux-v4.19/drivers/phy/marvell/
DMakefile7 obj-$(CONFIG_PHY_PXA_28NM_HSIC) += phy-pxa-28nm-hsic.o
8 obj-$(CONFIG_PHY_PXA_28NM_USB2) += phy-pxa-28nm-usb2.o
/Linux-v4.19/arch/powerpc/tools/
Dhead_check.sh43 nm="$1"
47 $nm "$vmlinux" | grep -e " [TA] _stext$" -e " t start_first_256B$" -e " a text_start$" -e " t start…
/Linux-v4.19/arch/arc/include/asm/
Dlinkage.h19 .macro ARCFP_DATA nm
25 .global \nm
/Linux-v4.19/drivers/phy/qualcomm/
DMakefile8 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-14nm.o
9 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-20nm.o
/Linux-v4.19/drivers/tee/optee/
Dsupp.c297 size_t nm; in supp_pop_req() local
308 nm = 1; in supp_pop_req()
311 nm = 0; in supp_pop_req()
318 if ((num_params - nm) != req->num_params) in supp_pop_req()
324 *num_meta = nm; in supp_pop_req()
/Linux-v4.19/include/linux/
Dtransport_class.h28 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) \ argument
31 .name = nm, \

1234