Home
last modified time | relevance | path

Searched refs:start (Results 2426 - 2450 of 20981) sorted by relevance

1...<<919293949596979899100>>...840

/kernel/linux/linux-6.6/arch/powerpc/platforms/powernv/
H A Dopal-irqchip.c162 if (!opal_irqs || !opal_irqs[i].start) in opal_event_shutdown()
166 disable_irq_nosync(opal_irqs[i].start); in opal_event_shutdown()
168 free_irq(opal_irqs[i].start, NULL); in opal_event_shutdown()
170 opal_irqs[i].start = 0; in opal_event_shutdown()
251 r->start = r->end = virq; in opal_event_init()
281 rc = request_irq(r->start, opal_interrupt, r->flags & IRQD_TRIGGER_MASK, in opal_event_init()
284 pr_warn("Error %d requesting OPAL irq %d\n", rc, (int)r->start); in opal_event_init()
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Di915_vgpu.c157 node->start, in vgt_deballoon_space()
158 node->start + node->size, in vgt_deballoon_space()
188 unsigned long start, unsigned long end) in vgt_balloon_space()
191 unsigned long size = end - start; in vgt_balloon_space()
194 if (start >= end) in vgt_balloon_space()
199 start, end, size / 1024); in vgt_balloon_space()
201 size, start, I915_COLOR_UNEVICTABLE, in vgt_balloon_space()
222 * view, the total size is the same as the physical one, with the start address
186 vgt_balloon_space(struct i915_ggtt *ggtt, struct drm_mm_node *node, unsigned long start, unsigned long end) vgt_balloon_space() argument
/kernel/linux/linux-5.10/include/net/
H A Dfib_rules.h16 kuid_t start; member
160 return range->start != 0 && range->end != 0; in fib_rule_port_range_set()
166 return ntohs(port) >= a->start && in fib_rule_port_inrange()
172 return a->start != 0 && a->end != 0 && a->end < 0xffff && in fib_rule_port_range_valid()
173 a->start <= a->end; in fib_rule_port_range_valid()
179 return a->start == b->start && in fib_rule_port_range_compare()
/kernel/linux/linux-5.10/tools/perf/tests/
H A Dtime-utils-test.c36 static bool test__perf_time__parse_str(const char *ostr, u64 start, u64 end) in test__perf_time__parse_str() argument
49 if (ptime.start != start || ptime.end != end) { in test__perf_time__parse_str()
51 start, end); in test__perf_time__parse_str()
102 if (ptime[i].start != d->ptime[i].start || in test__perf_time__parse_for_ranges()
105 i, d->ptime[i].start, d->ptime[i].end); in test__perf_time__parse_for_ranges()
/kernel/linux/linux-5.10/tools/perf/util/
H A Dmap.h23 u64 start; member
49 return ip - map->start + map->pgoff; in map__map_ip()
54 return ip + map->start - map->pgoff; in map__unmap_ip()
64 return map->end - map->start; in map__size()
67 /* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
104 u64 start, u64 end, u64 pgoff, struct dso *dso);
108 struct map *map__new(struct machine *machine, u64 start, u64 len,
111 struct map *map__new2(u64 start, struct dso *dso);
/kernel/linux/linux-5.10/fs/cifs/
H A Dcifs_unicode.h76 wchar_t start; member
120 __le16 *anchor = ucs1; /* save a pointer to start of ucs1 */ in UniStrcat()
170 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy()
333 while (rp->start) { in UniToupper()
334 if (uc < rp->start) /* Before start of range */ in UniToupper()
337 return uc + rp->table[uc - rp->start]; in UniToupper()
375 while (rp->start) { in UniTolower()
376 if (uc < rp->start) /* Before start o in UniTolower()
[all...]
/kernel/linux/linux-5.10/fs/hfsplus/
H A Dwrapper.c39 * @data will return a pointer to the start of the requested sector,
54 loff_t start; in hfsplus_submit_bio() local
63 start = (loff_t)sector << HFSPLUS_SECTOR_SHIFT; in hfsplus_submit_bio()
64 offset = start & (io_size - 1); in hfsplus_submit_bio()
128 sector_t *start, sector_t *size) in hfsplus_get_last_session()
133 *start = 0; in hfsplus_get_last_session()
149 *start = (sector_t)te.cdte_addr.lba << 2; in hfsplus_get_last_session()
155 *start = (sector_t)ms_info.addr.lba << 2; in hfsplus_get_last_session()
127 hfsplus_get_last_session(struct super_block *sb, sector_t *start, sector_t *size) hfsplus_get_last_session() argument
/kernel/linux/linux-5.10/mm/
H A Dsparse-vmemmap.c133 unsigned long start, unsigned long end) in vmemmap_verify()
140 start, end - 1); in vmemmap_verify()
219 int __meminit vmemmap_populate_basepages(unsigned long start, unsigned long end, in vmemmap_populate_basepages() argument
222 unsigned long addr = start; in vmemmap_populate_basepages()
254 unsigned long start = (unsigned long) pfn_to_page(pfn); in __populate_section_memmap() local
255 unsigned long end = start + nr_pages * sizeof(struct page); in __populate_section_memmap()
261 if (vmemmap_populate(start, end, nid, altmap)) in __populate_section_memmap()
132 vmemmap_verify(pte_t *pte, int node, unsigned long start, unsigned long end) vmemmap_verify() argument
H A Dmincore.c229 SYSCALL_DEFINE3(mincore, unsigned long, start, size_t, len, in SYSCALL_DEFINE3()
236 start = untagged_addr(start); in SYSCALL_DEFINE3()
238 /* Check the start address: needs to be page-aligned.. */ in SYSCALL_DEFINE3()
239 if (start & ~PAGE_MASK) in SYSCALL_DEFINE3()
243 if (!access_ok((void __user *) start, len)) in SYSCALL_DEFINE3()
264 retval = do_mincore(start, min(pages, PAGE_SIZE), tmp); in SYSCALL_DEFINE3()
275 start += retval << PAGE_SHIFT; in SYSCALL_DEFINE3()
/kernel/linux/linux-5.10/kernel/trace/
H A Dtrace_printk.c53 void hold_module_trace_bprintk_format(const char **start, const char **end) in hold_module_trace_bprintk_format() argument
59 if (start != end) in hold_module_trace_bprintk_format()
63 for (iter = start; iter < end; iter++) { in hold_module_trace_bprintk_format()
93 const char **start = mod->trace_bprintk_fmt_start; in module_trace_bprintk_format_notify() local
94 const char **end = start + mod->num_trace_bprintk_fmt; in module_trace_bprintk_format_notify()
97 hold_module_trace_bprintk_format(start, end); in module_trace_bprintk_format_notify()
133 * If this is the first pointer or called from start in find_next_mod_format()
343 .start = t_start,
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_pnfs.c247 u64 start, length, end; in xfs_fs_commit_blocks() local
249 start = maps[i].offset; in xfs_fs_commit_blocks()
250 if (start > size) in xfs_fs_commit_blocks()
253 end = start + maps[i].length; in xfs_fs_commit_blocks()
257 length = end - start; in xfs_fs_commit_blocks()
265 start >> PAGE_SHIFT, in xfs_fs_commit_blocks()
269 error = xfs_iomap_write_unwritten(ip, start, length, false); in xfs_fs_commit_blocks()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/falcon/
H A Dbase.c28 nvkm_falcon_load_imem(struct nvkm_falcon *falcon, void *data, u32 start, in nvkm_falcon_load_imem() argument
37 falcon->func->load_imem(falcon, data, start, size, tag, port, in nvkm_falcon_load_imem()
42 nvkm_falcon_load_dmem(struct nvkm_falcon *falcon, void *data, u32 start, in nvkm_falcon_load_dmem() argument
47 falcon->func->load_dmem(falcon, data, start, size, port); in nvkm_falcon_load_dmem()
53 nvkm_falcon_read_dmem(struct nvkm_falcon *falcon, u32 start, u32 size, u8 port, in nvkm_falcon_read_dmem() argument
58 falcon->func->read_dmem(falcon, start, size, port, data); in nvkm_falcon_read_dmem()
84 falcon->func->start(falcon); in nvkm_falcon_start()
/kernel/linux/linux-6.6/drivers/net/can/spi/mcp251xfd/
H A Dmcp251xfd-dump.c16 void *start; member
57 hdr->offset = cpu_to_le32(iter->data - iter->start); in mcp251xfd_dump_header()
266 iter.start = __vmalloc(file_size, GFP_KERNEL | __GFP_NOWARN | in mcp251xfd_dump()
268 if (!iter.start) { in mcp251xfd_dump()
274 iter.hdr = iter.start; in mcp251xfd_dump()
283 dev_coredumpv(&priv->spi->dev, iter.start, in mcp251xfd_dump()
284 iter.data - iter.start, GFP_KERNEL); in mcp251xfd_dump()
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dwrapper.c38 * @data will return a pointer to the start of the requested sector,
54 loff_t start; in hfsplus_submit_bio() local
63 start = (loff_t)sector << HFSPLUS_SECTOR_SHIFT; in hfsplus_submit_bio()
64 offset = start & (io_size - 1); in hfsplus_submit_bio()
126 sector_t *start, sector_t *size) in hfsplus_get_last_session()
131 *start = 0; in hfsplus_get_last_session()
147 *start = (sector_t)te.cdte_addr.lba << 2; in hfsplus_get_last_session()
153 *start = (sector_t)ms_info.addr.lba << 2; in hfsplus_get_last_session()
125 hfsplus_get_last_session(struct super_block *sb, sector_t *start, sector_t *size) hfsplus_get_last_session() argument
/kernel/linux/linux-6.6/fs/smb/client/
H A Dfscache.c168 static int fscache_fallback_write_pages(struct inode *inode, loff_t start, size_t len, in fscache_fallback_write_pages() argument
177 iov_iter_xarray(&iter, ITER_SOURCE, &inode->i_mapping->i_pages, start, len); in fscache_fallback_write_pages()
183 ret = cres.ops->prepare_write(&cres, &start, &len, i_size_read(inode), in fscache_fallback_write_pages()
186 ret = fscache_write(&cres, start, &iter, NULL, NULL); in fscache_fallback_write_pages()
228 loff_t start, data_start; in __cifs_fscache_query_occupancy() local
236 start = first * PAGE_SIZE; in __cifs_fscache_query_occupancy()
238 ret = cres.ops->query_occupancy(&cres, start, len, PAGE_SIZE, in __cifs_fscache_query_occupancy()
/kernel/linux/linux-6.6/include/net/
H A Dfib_rules.h16 kuid_t start; member
139 return range->start != 0 && range->end != 0; in fib_rule_port_range_set()
145 return ntohs(port) >= a->start && in fib_rule_port_inrange()
151 return a->start != 0 && a->end != 0 && a->end < 0xffff && in fib_rule_port_range_valid()
152 a->start <= a->end; in fib_rule_port_range_valid()
158 return a->start == b->start && in fib_rule_port_range_compare()
/kernel/linux/linux-6.6/include/linux/
H A Duserfaultfd_k.h87 extern ssize_t mfill_atomic_poison(struct mm_struct *dst_mm, unsigned long start,
91 unsigned long start, unsigned long len,
94 unsigned long start, unsigned long len, bool enable_wp);
192 unsigned long start,
196 unsigned long start, unsigned long end, struct list_head *uf);
272 unsigned long start, in userfaultfd_remove()
279 unsigned long start, unsigned long end, in userfaultfd_unmap_prep()
271 userfaultfd_remove(struct vm_area_struct *vma, unsigned long start, unsigned long end) userfaultfd_remove() argument
278 userfaultfd_unmap_prep(struct vm_area_struct *vma, unsigned long start, unsigned long end, struct list_head *uf) userfaultfd_unmap_prep() argument
/kernel/linux/linux-6.6/arch/x86/mm/
H A Dcpu_entry_area.c248 unsigned long start, end; in setup_cpu_entry_area_ptes() local
254 start = CPU_ENTRY_AREA_BASE; in setup_cpu_entry_area_ptes()
255 end = start + CPU_ENTRY_AREA_MAP_SIZE; in setup_cpu_entry_area_ptes()
257 /* Careful here: start + PMD_SIZE might wrap around */ in setup_cpu_entry_area_ptes()
258 for (; start < end && start >= CPU_ENTRY_AREA_BASE; start += PMD_SIZE) in setup_cpu_entry_area_ptes()
259 populate_extra_pte(start); in setup_cpu_entry_area_ptes()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_vgpu.c157 node->start, in vgt_deballoon_space()
158 node->start + node->size, in vgt_deballoon_space()
188 unsigned long start, unsigned long end) in vgt_balloon_space()
191 unsigned long size = end - start; in vgt_balloon_space()
194 if (start >= end) in vgt_balloon_space()
199 start, end, size / 1024); in vgt_balloon_space()
201 size, start, I915_COLOR_UNEVICTABLE, in vgt_balloon_space()
222 * view, the total size is the same as the physical one, with the start address
186 vgt_balloon_space(struct i915_ggtt *ggtt, struct drm_mm_node *node, unsigned long start, unsigned long end) vgt_balloon_space() argument
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dtime-utils-test.c36 static bool test__perf_time__parse_str(const char *ostr, u64 start, u64 end) in test__perf_time__parse_str() argument
49 if (ptime.start != start || ptime.end != end) { in test__perf_time__parse_str()
51 start, end); in test__perf_time__parse_str()
102 if (ptime[i].start != d->ptime[i].start || in test__perf_time__parse_for_ranges()
105 i, d->ptime[i].start, d->ptime[i].end); in test__perf_time__parse_for_ranges()
/kernel/linux/linux-6.6/net/sunrpc/xprtrdma/
H A Dsvc_rdma_pcl.c271 unsigned int start; in pcl_process_nonpayloads() local
290 start = pcl_chunk_end_offset(chunk); in pcl_process_nonpayloads()
291 ret = pcl_process_region(xdr, start, next->ch_position - start, in pcl_process_nonpayloads()
300 start = pcl_chunk_end_offset(chunk); in pcl_process_nonpayloads()
301 ret = pcl_process_region(xdr, start, xdr->len - start, actor, data); in pcl_process_nonpayloads()
/kernel/linux/linux-6.6/mm/
H A Dmincore.c232 SYSCALL_DEFINE3(mincore, unsigned long, start, size_t, len, in SYSCALL_DEFINE3()
239 start = untagged_addr(start); in SYSCALL_DEFINE3()
241 /* Check the start address: needs to be page-aligned.. */ in SYSCALL_DEFINE3()
242 if (start & ~PAGE_MASK) in SYSCALL_DEFINE3()
246 if (!access_ok((void __user *) start, len)) in SYSCALL_DEFINE3()
267 retval = do_mincore(start, min(pages, PAGE_SIZE), tmp); in SYSCALL_DEFINE3()
278 start += retval << PAGE_SHIFT; in SYSCALL_DEFINE3()
/kernel/linux/linux-6.6/lib/
H A Dasn1_encoder.c43 /* remaining length where at d (the start of the integer encoding) */ in asn1_encode_integer()
92 int start = 7 + 7 + 7 + 7; in asn1_encode_oid_digit() local
105 while (oid >> start == 0) in asn1_encode_oid_digit()
106 start -= 7; in asn1_encode_oid_digit()
108 while (start > 0 && *data_len > 0) { in asn1_encode_oid_digit()
111 byte = oid >> start; in asn1_encode_oid_digit()
112 oid = oid - (byte << start); in asn1_encode_oid_digit()
113 start -= 7; in asn1_encode_oid_digit()
288 * we're recoding, so move back to the start of the in asn1_encode_tag()
388 * we're recoding, so move back to the start o in asn1_encode_sequence()
[all...]
/kernel/linux/linux-6.6/kernel/trace/
H A Dtrace_printk.c53 void hold_module_trace_bprintk_format(const char **start, const char **end) in hold_module_trace_bprintk_format() argument
59 if (start != end) in hold_module_trace_bprintk_format()
63 for (iter = start; iter < end; iter++) { in hold_module_trace_bprintk_format()
93 const char **start = mod->trace_bprintk_fmt_start; in module_trace_bprintk_format_notify() local
94 const char **end = start + mod->num_trace_bprintk_fmt; in module_trace_bprintk_format_notify()
97 hold_module_trace_bprintk_format(start, end); in module_trace_bprintk_format_notify()
133 * If this is the first pointer or called from start in find_next_mod_format()
354 .start = t_start,
/third_party/icu/icu4c/source/samples/layout/
H A DFontMap.cpp177 le_int32 start, end, len; in strip() local
179 start = 0; in strip()
182 while (start < len && isspace(s[start])) { in strip()
183 start += 1; in strip()
188 while (end > start && isspace(s[end])) { in strip()
196 return &s[start]; in strip()

Completed in 16 milliseconds

1...<<919293949596979899100>>...840