Searched refs:ent (Results 26 - 50 of 627) sorted by relevance

1234567891011>>

/linux-master/drivers/bcma/
H A Dscan.c158 u32 ent = readl(*eromptr); local
160 return ent;
170 u32 ent = bcma_erom_get_ent(bus, eromptr); local
171 if (!(ent & SCAN_ER_VALID))
173 if ((ent & SCAN_ER_TAG) != SCAN_ER_TAG_CI)
175 return ent;
180 u32 ent = bcma_erom_get_ent(bus, eromptr); local
182 return (ent == (SCAN_ER_TAG_END | SCAN_ER_VALID));
187 u32 ent = bcma_erom_get_ent(bus, eromptr); local
189 return (((ent
196 u32 ent; local
210 u32 ent = bcma_erom_get_ent(bus, eromptr); local
224 u32 ent = bcma_erom_get_ent(bus, eromptr); local
[all...]
/linux-master/arch/alpha/lib/
H A Ddbg_stackcheck.S16 .ent _mcount
H A Ddbg_current.S15 .ent _mcount
H A Dstrcpy.S14 .ent strcpy
H A Ddbg_stackkill.S17 .ent _mcount
H A Dclear_page.S11 .ent clear_page
/linux-master/tools/testing/selftests/mm/
H A Dvm_util.h62 #define PAGEMAP_PRESENT(ent) (((ent) & (1ull << 63)) != 0)
63 #define PAGEMAP_PFN(ent) ((ent) & ((1ull << 55) - 1))
/linux-master/security/apparmor/
H A Dcapability.c69 struct audit_cache *ent; local
91 ent = &get_cpu_var(audit_cache);
92 if (profile == ent->profile && cap_raised(ent->caps, cap)) {
98 aa_put_profile(ent->profile);
99 ent->profile = aa_get_profile(profile);
100 cap_raise(ent->caps, cap);
H A Dpolicy.c911 struct aa_load_ent *ent; local
918 list_for_each_entry(ent, lh, list) {
919 if (ent->new == profile)
921 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
922 0 && ent->new->base.hname[len] == 0)
923 return ent->new;
1062 struct aa_load_ent *ent, *tmp; local
1078 * fail. Sort ent list and take ns locks in hierarchy order
1081 list_for_each_entry(ent, &lh, list) {
1083 if (ent
[all...]
/linux-master/mm/
H A Dswap_cgroup.c76 static struct swap_cgroup *lookup_swap_cgroup(swp_entry_t ent, argument
79 pgoff_t offset = swp_offset(ent);
82 ctrl = &swap_cgroup_ctrl[swp_type(ent)];
90 * @ent: swap entry to be cmpxchged
97 unsigned short swap_cgroup_cmpxchg(swp_entry_t ent, argument
105 sc = lookup_swap_cgroup(ent, &ctrl);
119 * @ent: the first swap entry to be recorded into
126 unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id, argument
133 pgoff_t offset = swp_offset(ent);
136 sc = lookup_swap_cgroup(ent,
162 lookup_swap_cgroup_id(swp_entry_t ent) argument
[all...]
/linux-master/arch/alpha/kernel/
H A Dhead.S20 .ent __start
38 .ent __smp_callin
67 .ent cserve_ena
78 .ent cserve_dis
95 .ent halt
/linux-master/tools/perf/util/
H A Djitdump.h126 debug_entry_next(struct debug_entry *ent) argument
128 void *a = ent + 1;
129 size_t l = strlen(ent->name) + 1;
134 debug_entry_file(struct debug_entry *ent) argument
136 void *a = ent + 1;
H A Dgenelf_debug.c300 static ubyte get_special_opcode(struct debug_entry *ent, argument
310 temp = (ent->lineno - last_line) - default_debug_line_header.line_base;
318 delta_addr = (ent->addr - last_vma) / default_debug_line_header.minimum_instruction_length;
335 struct debug_entry *ent, size_t nr_entry,
362 for (i = 0; i < nr_entry; i++, ent = debug_entry_next(ent)) {
369 if ((!cur_filename || strcmp(cur_filename, ent->name)) &&
370 strcmp(repeated_name_marker, ent->name)) {
371 emit_lne_define_filename(be, ent->name);
372 cur_filename = ent
334 emit_lineno_info(struct buffer_ext *be, struct debug_entry *ent, size_t nr_entry, unsigned long code_addr) argument
408 add_debug_line(struct buffer_ext *be, struct debug_entry *ent, size_t nr_entry, unsigned long code_addr) argument
479 struct debug_entry *ent = debug; local
[all...]
/linux-master/tools/iio/
H A Diio_utils.c98 const struct dirent *ent; local
122 while (ent = readdir(dp), ent)
123 if ((strcmp(builtname, ent->d_name) == 0) ||
124 (strcmp(builtname_generic, ent->d_name) == 0)) {
126 "%s/%s", scan_el_dir, ent->d_name);
181 if (strcmp(builtname, ent->d_name) == 0)
227 const struct dirent *ent; local
247 while (ent = readdir(dp), ent)
323 const struct dirent *ent; local
562 const struct dirent *ent; local
[all...]
/linux-master/tools/perf/util/bpf_skel/vmlinux/
H A Dvmlinux.h117 struct trace_entry ent; member in struct:trace_event_raw_irq_handler_entry
124 struct trace_entry ent; member in struct:trace_event_raw_irq_handler_exit
131 struct trace_entry ent; member in struct:trace_event_raw_softirq
137 struct trace_entry ent; member in struct:trace_event_raw_workqueue_execute_start
144 struct trace_entry ent; member in struct:trace_event_raw_workqueue_execute_end
151 struct trace_entry ent; member in struct:trace_event_raw_workqueue_activate_work
/linux-master/fs/proc/
H A Dgeneric.c396 struct proc_dir_entry *ent = NULL; local
425 ent = kmem_cache_zalloc(proc_dir_entry_cache, GFP_KERNEL);
426 if (!ent)
430 ent->name = ent->inline_name;
432 ent->name = kmalloc(qstr.len + 1, GFP_KERNEL);
433 if (!ent->name) {
434 pde_free(ent);
439 memcpy(ent->name, fn, qstr.len + 1);
440 ent
461 struct proc_dir_entry *ent; local
484 struct proc_dir_entry *ent; local
527 struct proc_dir_entry *ent, *parent = NULL; local
[all...]
H A Dkcore.c127 struct kcore_list *ent; local
129 ent = kmalloc(sizeof(*ent), GFP_KERNEL);
130 if (!ent)
132 ent->addr = (unsigned long)__va(0);
133 ent->size = max_low_pfn << PAGE_SHIFT;
134 ent->type = KCORE_RAM;
135 list_add(&ent->list, head);
144 get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) argument
146 unsigned long pfn = __pa(ent
177 get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head) argument
188 struct kcore_list *ent; local
[all...]
H A Dproc_tty.c133 struct proc_dir_entry *ent; local
139 ent = proc_create_single_data(driver->driver_name, 0, proc_tty_driver,
141 driver->proc_entry = ent;
149 struct proc_dir_entry *ent; local
151 ent = driver->proc_entry;
152 if (!ent)
155 remove_proc_entry(ent->name, proc_tty_driver);
/linux-master/net/netfilter/
H A Dxt_hashlimit.c177 static inline bool dst_cmp(const struct dsthash_ent *ent, argument
180 return !memcmp(&ent->dst, b, sizeof(ent->dst));
202 struct dsthash_ent *ent; local
206 hlist_for_each_entry_rcu(ent, &ht->hash[hash], node)
207 if (dst_cmp(ent, dst)) {
208 spin_lock(&ent->lock);
209 return ent;
220 struct dsthash_ent *ent; local
227 ent
261 struct dsthash_ent *ent = container_of(head, struct dsthash_ent, rcu); local
267 dsthash_free(struct xt_hashlimit_htable *ht, struct dsthash_ent *ent) argument
1094 dl_seq_print(struct dsthash_ent *ent, u_int8_t family, struct seq_file *s) argument
1125 dl_seq_real_show_v2(struct dsthash_ent *ent, u_int8_t family, struct seq_file *s) argument
1140 dl_seq_real_show_v1(struct dsthash_ent *ent, u_int8_t family, struct seq_file *s) argument
1155 dl_seq_real_show(struct dsthash_ent *ent, u_int8_t family, struct seq_file *s) argument
1174 struct dsthash_ent *ent; local
1188 struct dsthash_ent *ent; local
1202 struct dsthash_ent *ent; local
[all...]
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A DM0209.h25 u32 nvbios_M0209Se(struct nvkm_bios *, int ent, int idx, u8 *ver, u8 *hdr);
26 u32 nvbios_M0209Sp(struct nvkm_bios *, int ent, int idx, u8 *ver, u8 *hdr,
/linux-master/drivers/gpu/drm/i915/
H A Di915_driver.h23 int i915_driver_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
/linux-master/net/sctp/
H A Dobjcnt.c99 struct proc_dir_entry *ent; local
101 ent = proc_create_seq("sctp_dbg_objcnt", 0,
103 if (!ent)
/linux-master/tools/hv/
H A Dhv_vss_daemon.c117 struct mntent *ent; local
139 while ((ent = getmntent(mounts))) {
140 if (strncmp(ent->mnt_fsname, match, strlen(match)))
142 if (stat(ent->mnt_fsname, &sb)) {
144 ent->mnt_fsname, errno, strerror(errno));
151 if (hasmntopt(ent, MNTOPT_RO) != NULL)
153 if (strcmp(ent->mnt_type, "vfat") == 0)
155 if (strcmp(ent->mnt_dir, "/") == 0) {
159 error |= vss_do_freeze(ent->mnt_dir, cmd);
184 if (ent) {
[all...]
/linux-master/arch/um/kernel/
H A Dexitcode.c68 struct proc_dir_entry *ent; local
70 ent = proc_create("exitcode", 0600, NULL, &exitcode_proc_ops);
71 if (ent == NULL) {
/linux-master/tools/bpf/bpftool/skeleton/
H A Dpid_iter.bpf.c38 static __always_inline __u32 get_obj_id(void *ent, enum bpf_obj_type type) argument
42 return BPF_CORE_READ((struct bpf_prog *)ent, aux, id);
44 return BPF_CORE_READ((struct bpf_map *)ent, id);
46 return BPF_CORE_READ((struct btf *)ent, id);
48 return BPF_CORE_READ((struct bpf_link *)ent, id);

Completed in 428 milliseconds

1234567891011>>