Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 3322) sorted by relevance

12345678910>>...133

/Linux-v4.19/arch/nds32/mm/
Dproc.c100 unsigned long end, line_size; in cpu_icache_inval_all() local
103 end = in cpu_icache_inval_all()
107 end -= line_size; in cpu_icache_inval_all()
108 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all()
109 end -= line_size; in cpu_icache_inval_all()
110 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all()
111 end -= line_size; in cpu_icache_inval_all()
112 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all()
113 end -= line_size; in cpu_icache_inval_all()
114 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all()
[all …]
/Linux-v4.19/kernel/
Drange.c11 int add_range(struct range *range, int az, int nr_range, u64 start, u64 end) in add_range() argument
13 if (start >= end) in add_range()
21 range[nr_range].end = end; in add_range()
29 u64 start, u64 end) in add_range_with_merge() argument
33 if (start >= end) in add_range_with_merge()
40 if (!range[i].end) in add_range_with_merge()
44 common_end = min(range[i].end, end); in add_range_with_merge()
50 end = max(range[i].end, end); in add_range_with_merge()
55 range[nr_range - 1].end = 0; in add_range_with_merge()
61 return add_range(range, az, nr_range, start, end); in add_range_with_merge()
[all …]
Dresource.c32 .end = IO_SPACE_LIMIT,
40 .end = -1,
108 unsigned long long start, end; in r_show() local
109 int width = root->end < 0x10000 ? 4 : 8; in r_show()
118 end = r->end; in r_show()
120 start = end = 0; in r_show()
126 width, end, in r_show()
187 resource_size_t end = new->end; in __request_resource() local
190 if (end < start) in __request_resource()
194 if (end > root->end) in __request_resource()
[all …]
/Linux-v4.19/include/linux/ceph/
Ddecode.h52 static inline bool ceph_has_room(void **p, void *end, size_t n) in ceph_has_room() argument
54 return end >= *p && n <= end - *p; in ceph_has_room()
57 #define ceph_decode_need(p, end, n, bad) \ argument
59 if (!likely(ceph_has_room(p, end, n))) \
63 #define ceph_decode_64_safe(p, end, v, bad) \ argument
65 ceph_decode_need(p, end, sizeof(u64), bad); \
68 #define ceph_decode_32_safe(p, end, v, bad) \ argument
70 ceph_decode_need(p, end, sizeof(u32), bad); \
73 #define ceph_decode_16_safe(p, end, v, bad) \ argument
75 ceph_decode_need(p, end, sizeof(u16), bad); \
[all …]
/Linux-v4.19/arch/mips/pci/
Dpci-malta.c43 .end = 0x000fffffUL,
93 resource_size_t start, end, map, start1, end1, map1, map2, map3, mask; in mips_pcibios_init() local
116 end = GT_READ(GT_PCI0M0HD_OFS); in mips_pcibios_init()
118 end = (end & GT_PCI_HD_MSK) | (start & ~GT_PCI_HD_MSK); in mips_pcibios_init()
124 if (end1 - start1 > end - start) { in mips_pcibios_init()
126 end = end1; in mips_pcibios_init()
129 mask = ~(start ^ end); in mips_pcibios_init()
134 gt64120_mem_resource.end = end; in mips_pcibios_init()
138 gt64120_mem_resource.end <<= GT_PCI_DCRM_SHF; in mips_pcibios_init()
139 gt64120_mem_resource.end |= (1 << GT_PCI_DCRM_SHF) - 1; in mips_pcibios_init()
[all …]
/Linux-v4.19/arch/microblaze/kernel/cpu/
Dcache.c92 #define CACHE_LOOP_LIMITS(start, end, cache_line_length, cache_size) \ argument
95 end = min(start + cache_size, end); \
124 #define CACHE_RANGE_LOOP_2(start, end, line_length, op) \ argument
129 end = ((end & align) == end) ? end - line_length : end & align; \
130 count = end - start; \
141 #define CACHE_RANGE_LOOP_1(start, end, line_length, op) \ argument
145 end = ((end & align) == end) ? end - line_length : end & align; \
146 WARN_ON(end < start); \
152 : : "r" (temp), "r" (start), "r" (end), \
158 static void __flush_icache_range_msr_irq(unsigned long start, unsigned long end) in __flush_icache_range_msr_irq() argument
[all …]
/Linux-v4.19/fs/ceph/
Dmdsmap.c46 #define __decode_and_drop_type(p, end, type, bad) \ argument
48 if (*p + sizeof(type) > end) \
53 #define __decode_and_drop_set(p, end, type, bad) \ argument
57 ceph_decode_32_safe(p, end, n, bad); \
59 ceph_decode_need(p, end, need, bad); \
63 #define __decode_and_drop_map(p, end, ktype, vtype, bad) \ argument
67 ceph_decode_32_safe(p, end, n, bad); \
69 ceph_decode_need(p, end, need, bad); \
74 static int __decode_and_drop_compat_set(void **p, void* end) in __decode_and_drop_compat_set() argument
80 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad); in __decode_and_drop_compat_set()
[all …]
/Linux-v4.19/tools/perf/util/
Dblock-range.c24 assert(entry->start <= entry->end); /* single instruction block; jump to a jump */ in block_range__debug()
26 old = entry->end; in block_range__debug()
43 else if (addr > entry->end) in block_range__find()
79 struct block_range_iter block_range__create(u64 start, u64 end) in block_range__create() argument
92 else if (start > entry->end) in block_range__create()
110 if (entry->end < start) { in block_range__create()
117 if (next->start <= end) { /* add head: [start...][n->start...] */ in block_range__create()
124 .end = next->start - 1, in block_range__create()
147 .end = end, in block_range__create()
157 iter.end = entry; in block_range__create()
[all …]
Dtime-utils.c18 char *end; in parse_nsec_time() local
20 time_sec = strtoul(str, &end, 10); in parse_nsec_time()
21 if (*end != '.' && *end != '\0') in parse_nsec_time()
24 if (*end == '.') { in parse_nsec_time()
28 if (strlen(++end) > 9) in parse_nsec_time()
31 strncpy(nsec_buf, end, 9); in parse_nsec_time()
38 time_nsec = strtoul(nsec_buf, &end, 10); in parse_nsec_time()
39 if (*end != '\0') in parse_nsec_time()
57 (parse_nsec_time(end_str, &ptime->end) != 0)) { in parse_timestr_sec_nsec()
64 static int split_start_end(char **start, char **end, const char *ostr, char ch) in split_start_end() argument
[all …]
/Linux-v4.19/arch/nios2/mm/
Dcacheflush.c18 static void __flush_dcache(unsigned long start, unsigned long end) in __flush_dcache() argument
23 end += (cpuinfo.dcache_line_size - 1); in __flush_dcache()
24 end &= ~(cpuinfo.dcache_line_size - 1); in __flush_dcache()
26 if (end > start + cpuinfo.dcache_size) in __flush_dcache()
27 end = start + cpuinfo.dcache_size; in __flush_dcache()
29 for (addr = start; addr < end; addr += cpuinfo.dcache_line_size) { in __flush_dcache()
37 static void __invalidate_dcache(unsigned long start, unsigned long end) in __invalidate_dcache() argument
42 end += (cpuinfo.dcache_line_size - 1); in __invalidate_dcache()
43 end &= ~(cpuinfo.dcache_line_size - 1); in __invalidate_dcache()
45 for (addr = start; addr < end; addr += cpuinfo.dcache_line_size) { in __invalidate_dcache()
[all …]
/Linux-v4.19/arch/arm/mach-pxa/
Ddevices.c42 .end = IRQ_PMU,
56 .end = 0x41100fff,
61 .end = IRQ_MMC,
97 .end = 0x4060ffff,
102 .end = IRQ_USB,
135 .end = 0x54100fff,
140 .end = IRQ_USB2,
161 .end = 0x4400ffff,
166 .end = IRQ_LCD,
193 .end = 0x40100023,
[all …]
/Linux-v4.19/arch/x86/pci/
Damd_bus.c72 u64 end; in early_root_info_init() local
160 end = (reg & 0xfff000) | 0xfff; in early_root_info_init()
167 node, link, start, end); in early_root_info_init()
170 if (end > 0xffff) in early_root_info_init()
171 end = 0xffff; in early_root_info_init()
172 update_res(info, start, end, IORESOURCE_IO, 1); in early_root_info_init()
173 subtract_range(range, RANGE_NUM, start, end + 1); in early_root_info_init()
180 if (!range[i].end) in early_root_info_init()
183 update_res(info, range[i].start, range[i].end - 1, in early_root_info_init()
190 end = cap_resource((0xfdULL<<32) - 1); in early_root_info_init()
[all …]
/Linux-v4.19/sound/firewire/bebob/
Dbebob_stream.c76 goto end; in snd_bebob_stream_get_rate()
84 goto end; in snd_bebob_stream_get_rate()
88 goto end; in snd_bebob_stream_get_rate()
93 end: in snd_bebob_stream_get_rate()
105 goto end; in snd_bebob_stream_set_rate()
110 goto end; in snd_bebob_stream_set_rate()
117 end: in snd_bebob_stream_set_rate()
136 goto end; in snd_bebob_stream_get_clock_src()
144 goto end; in snd_bebob_stream_get_clock_src()
148 goto end; in snd_bebob_stream_get_clock_src()
[all …]
/Linux-v4.19/arch/c6x/platforms/
Dcache.c133 unsigned int *end, in cache_block_operation() argument
139 (L2_CACHE_ALIGN_CNT((unsigned int) end) in cache_block_operation()
178 unsigned int *end, in cache_block_operation_nowait() argument
184 (L2_CACHE_ALIGN_CNT((unsigned int) end) in cache_block_operation_nowait()
325 void enable_caching(unsigned long start, unsigned long end) in enable_caching() argument
328 unsigned int mar_e = IMCR_MAR_BASE + ((end >> 24) << 2); in enable_caching()
334 void disable_caching(unsigned long start, unsigned long end) in disable_caching() argument
337 unsigned int mar_e = IMCR_MAR_BASE + ((end >> 24) << 2); in disable_caching()
347 void L1P_cache_block_invalidate(unsigned int start, unsigned int end) in L1P_cache_block_invalidate() argument
350 (unsigned int *) end, in L1P_cache_block_invalidate()
[all …]
/Linux-v4.19/arch/arm/mm/
Dcache-feroceon-l2.c73 static inline void l2_clean_pa_range(unsigned long start, unsigned long end) in l2_clean_pa_range() argument
82 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_clean_pa_range()
85 va_end = va_start + (end - start); in l2_clean_pa_range()
104 static inline void l2_inv_pa_range(unsigned long start, unsigned long end) in l2_inv_pa_range() argument
113 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_inv_pa_range()
116 va_end = va_start + (end - start); in l2_inv_pa_range()
142 static unsigned long calc_range_end(unsigned long start, unsigned long end) in calc_range_end() argument
147 BUG_ON(end & (CACHE_LINE_SIZE - 1)); in calc_range_end()
152 range_end = end; in calc_range_end()
171 static void feroceon_l2_inv_range(unsigned long start, unsigned long end) in feroceon_l2_inv_range() argument
[all …]
/Linux-v4.19/arch/x86/mm/
Dpat_rbtree.c39 static int is_node_overlap(struct memtype *node, u64 start, u64 end) in is_node_overlap() argument
41 if (node->start >= end || node->end <= start) in is_node_overlap()
59 u64 max_end = data->end, child_max_end; in compute_subtree_max_end()
77 u64 start, u64 end) in RB_DECLARE_CALLBACKS()
88 } else if (is_node_overlap(data, start, end)) { in RB_DECLARE_CALLBACKS()
107 u64 start, u64 end, int match_type) in memtype_rb_match() argument
111 match = memtype_rb_lowest_match(root, start, end); in memtype_rb_match()
112 while (match != NULL && match->start < end) { in memtype_rb_match()
116 (match->start == start) && (match->end == end)) in memtype_rb_match()
120 (match->start < start) && (match->end == end)) in memtype_rb_match()
[all …]
Dnuma_emulation.c32 static u64 __init mem_hole_size(u64 start, u64 end) in mem_hole_size() argument
35 unsigned long end_pfn = PFN_DOWN(end); in mem_hole_size()
60 eb->end = pb->start + size; in emu_setup_memblk()
67 if (pb->start >= pb->end) { in emu_setup_memblk()
68 WARN_ON_ONCE(pb->start > pb->end); in emu_setup_memblk()
73 nid, eb->start, eb->end - 1, (eb->end - eb->start) >> 20); in emu_setup_memblk()
129 u64 start, limit, end; in split_nodes_interleave() local
138 limit = pi->blk[phys_blk].end; in split_nodes_interleave()
139 end = start + size; in split_nodes_interleave()
142 end += FAKE_NODE_MIN_SIZE; in split_nodes_interleave()
[all …]
/Linux-v4.19/mm/
Dmadvise.c57 unsigned long start, unsigned long end, int behavior) in madvise_behavior() argument
107 error = ksm_madvise(vma, start, end, behavior, &new_flags); in madvise_behavior()
139 *prev = vma_merge(mm, *prev, start, end, new_flags, vma->anon_vma, in madvise_behavior()
166 if (end != vma->vm_end) { in madvise_behavior()
171 error = __split_vma(mm, vma, end, 0); in madvise_behavior()
194 unsigned long end, struct mm_walk *walk) in swapin_walk_pmd_entry() argument
203 for (index = start; index != end; index += PAGE_SIZE) { in swapin_walk_pmd_entry()
229 unsigned long start, unsigned long end) in force_swapin_readahead() argument
237 walk_page_range(start, end, &walk); in force_swapin_readahead()
243 unsigned long start, unsigned long end, in force_shm_swapin_readahead() argument
[all …]
Dpagewalk.c7 static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end, in walk_pte_range() argument
19 if (addr == end) in walk_pte_range()
28 static int walk_pmd_range(pud_t *pud, unsigned long addr, unsigned long end, in walk_pmd_range() argument
38 next = pmd_addr_end(addr, end); in walk_pmd_range()
68 } while (pmd++, addr = next, addr != end); in walk_pmd_range()
73 static int walk_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end, in walk_pud_range() argument
83 next = pud_addr_end(addr, end); in walk_pud_range()
112 } while (pud++, addr = next, addr != end); in walk_pud_range()
117 static int walk_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end, in walk_p4d_range() argument
126 next = p4d_addr_end(addr, end); in walk_p4d_range()
[all …]
/Linux-v4.19/lib/
Dvsprintf.c411 char *number(char *buf, char *end, unsigned long long num, in number() argument
477 if (buf < end) in number()
484 if (buf < end) in number()
491 if (buf < end) in number()
496 if (buf < end) in number()
506 if (buf < end) in number()
513 if (buf < end) in number()
519 if (buf < end) in number()
525 if (buf < end) in number()
534 char *special_hex_number(char *buf, char *end, unsigned long long num, int size) in special_hex_number() argument
[all …]
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/fw/
Ddbg.c354 u32 start, end; member
358 { .start = 0x00a00000, .end = 0x00a00000 },
359 { .start = 0x00a0000c, .end = 0x00a00024 },
360 { .start = 0x00a0002c, .end = 0x00a0003c },
361 { .start = 0x00a00410, .end = 0x00a00418 },
362 { .start = 0x00a00420, .end = 0x00a00420 },
363 { .start = 0x00a00428, .end = 0x00a00428 },
364 { .start = 0x00a00430, .end = 0x00a0043c },
365 { .start = 0x00a00444, .end = 0x00a00444 },
366 { .start = 0x00a004c0, .end = 0x00a004cc },
[all …]
/Linux-v4.19/Documentation/kdump/
Dgdbmacros.txt32 end
34 end
46 end
48 end
50 end
52 end
53 end
56 end
75 end
76 end
[all …]
/Linux-v4.19/arch/mips/jz4740/
Dplatform.c44 .end = JZ4740_UDC_BASE_ADDR + 0x10000 - 1,
49 .end = JZ4740_IRQ_UDC,
70 .end = JZ4740_MSC_BASE_ADDR + 0x1000 - 1,
75 .end = JZ4740_IRQ_MSC,
95 .end = JZ4740_I2C_BASE_ADDR + 0x1000 - 1,
100 .end = JZ4740_IRQ_I2C,
117 .end = JZ4740_EMC_BASE_ADDR + 0x1000 - 1,
123 .end = 0x180C0000 - 1,
129 .end = 0x140C0000 - 1,
135 .end = 0x0C0C0000 - 1,
[all …]
/Linux-v4.19/net/ceph/
Dosdmap.c55 static int crush_decode_uniform_bucket(void **p, void *end, in crush_decode_uniform_bucket() argument
58 dout("crush_decode_uniform_bucket %p to %p\n", *p, end); in crush_decode_uniform_bucket()
59 ceph_decode_need(p, end, (1+b->h.size) * sizeof(u32), bad); in crush_decode_uniform_bucket()
66 static int crush_decode_list_bucket(void **p, void *end, in crush_decode_list_bucket() argument
70 dout("crush_decode_list_bucket %p to %p\n", *p, end); in crush_decode_list_bucket()
77 ceph_decode_need(p, end, 2 * b->h.size * sizeof(u32), bad); in crush_decode_list_bucket()
87 static int crush_decode_tree_bucket(void **p, void *end, in crush_decode_tree_bucket() argument
91 dout("crush_decode_tree_bucket %p to %p\n", *p, end); in crush_decode_tree_bucket()
92 ceph_decode_8_safe(p, end, b->num_nodes, bad); in crush_decode_tree_bucket()
96 ceph_decode_need(p, end, b->num_nodes * sizeof(u32), bad); in crush_decode_tree_bucket()
[all …]
/Linux-v4.19/arch/arm/mach-davinci/
Ddevices-da8xx.c157 .end = DA8XX_TPCC_BASE + SZ_32K - 1,
163 .end = DA8XX_TPTC0_BASE + SZ_1K - 1,
169 .end = DA8XX_TPTC1_BASE + SZ_1K - 1,
188 .end = DA850_TPCC1_BASE + SZ_32K - 1,
194 .end = DA850_TPTC2_BASE + SZ_1K - 1,
305 .end = DA8XX_I2C0_BASE + SZ_4K - 1,
310 .end = IRQ_DA8XX_I2CINT0,
325 .end = DA8XX_I2C1_BASE + SZ_4K - 1,
330 .end = IRQ_DA8XX_I2CINT1,
361 .end = DA8XX_WDOG_BASE + SZ_4K - 1,
[all …]

12345678910>>...133