Searched refs:begin (Results 1 - 25 of 231) sorted by relevance

12345678910

/linux-master/arch/x86/kernel/
H A Ddumpstack_32.c40 unsigned long *begin = (unsigned long *)this_cpu_read(pcpu_hot.hardirq_stack_ptr); local
41 unsigned long *end = begin + (THREAD_SIZE / sizeof(long));
47 if (stack < begin || stack > end)
51 info->begin = begin;
58 info->next_sp = (unsigned long *)*begin;
65 unsigned long *begin = (unsigned long *)this_cpu_read(pcpu_hot.softirq_stack_ptr); local
66 unsigned long *end = begin + (THREAD_SIZE / sizeof(long));
72 if (stack < begin || stack > end)
76 info->begin
93 void *begin = ss->stack; local
[all...]
H A Ddumpstack_64.c96 unsigned long begin, end, stk = (unsigned long)stack; local
103 begin = (unsigned long)__this_cpu_read(cea_exception_stacks);
108 if (!begin)
111 end = begin + sizeof(struct cea_exception_stacks);
113 if (stk < begin || stk >= end)
117 k = (stk - begin) >> PAGE_SHIFT;
124 begin += (unsigned long)ep->offs;
125 end = begin + (unsigned long)ep->size;
129 info->begin = (unsigned long *)begin;
138 unsigned long *begin; local
[all...]
H A Dsys_x86_64.c90 unsigned long *begin, unsigned long *end)
100 *begin = 0x40000000;
103 *begin = randomize_page(*begin, 0x02000000);
108 *begin = get_mmap_base(1);
122 unsigned long begin, end; local
127 find_start_end(addr, flags, &begin, &end);
142 info.low_limit = begin;
89 find_start_end(unsigned long addr, unsigned long flags, unsigned long *begin, unsigned long *end) argument
/linux-master/scripts/dtc/
H A Dof_unittest_expect106 --verbose do not suppress EXPECT begin and end lines
116 to occur with an 'EXPECT \\ : text' (begin) before triggering the
121 For each expected message, the 'EXPECT \\ : text' (begin) and
124 If 'EXPECT \\' (begin) and 'EXPECT /' (end) lines do not contain
128 reverse order of the corresponding 'EXPECT \\' (begin) lines.
130 'EXPECT \\ : text' (begin) and 'EXPECT / : text' (end) lines can
137 'EXPECT \\' (begin) and 'EXPECT /' (end) lines are suppressed.
141 'ok ' Line matches an enclosing EXPECT begin/end pair
235 # Patterns to match 'EXPECT \ : ' (begin) and 'EXPECT / : ' (end)
279 # ----- find EXPECT begin
[all...]
/linux-master/samples/seccomp/
H A Dbpf-helper.c66 struct __bpf_label *begin = labels->labels, *end; local
74 begin->label = label;
75 begin->location = 0xffffffff;
79 end = begin + labels->count;
80 for (id = 0; begin < end; ++begin, ++id) {
81 if (!strcmp(label, begin->label))
84 begin->label = label;
85 begin->location = 0xffffffff;
/linux-master/arch/sh/mm/
H A Dcache-sh2.c21 unsigned long begin, end; local
23 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
26 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
42 unsigned long begin, end; local
44 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
48 for (v = begin; v < end; v+=L1_CACHE_BYTES)
73 unsigned long begin, end;
75 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
79 for (v = begin; v < end; v+=L1_CACHE_BYTES)
H A Dcache-sh2a.c53 unsigned long begin, end; local
57 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) {
67 begin = CACHE_OC_ADDRESS_ARRAY;
68 end = begin + (nr_ways * current_cpu_data.dcache.way_size);
70 for (v = begin; v < end; v += L1_CACHE_BYTES) {
78 for (v = begin; v < end; v += L1_CACHE_BYTES)
94 unsigned long begin, end; local
97 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
104 for (v = begin;
124 unsigned long begin, end; local
[all...]
H A Dcache-sh3.c35 unsigned long begin, end; local
38 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
42 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
74 unsigned long begin, end; local
76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
80 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
/linux-master/lib/
H A Dratelimit.c50 if (!rs->begin)
51 rs->begin = jiffies;
53 if (time_is_before_jiffies(rs->begin + interval)) {
62 rs->begin = jiffies;
/linux-master/fs/ufs/
H A Dutil.h315 #define ubh_get_addr8(ubh,begin) \
316 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
317 ((begin) & ~uspi->s_fmask))
319 #define ubh_get_addr16(ubh,begin) \
320 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
321 ((begin) & ((uspi->fsize>>1) - 1)))
323 #define ubh_get_addr32(ubh,begin) \
324 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
325 ((begin) & ((uspi->s_fsize>>2) - 1)))
327 #define ubh_get_addr64(ubh,begin) \
385 _ubh_find_next_zero_bit_( struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned size, unsigned offset) argument
432 _ubh_find_last_zero_bit_( struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned start, unsigned end) argument
461 _ubh_isblockset_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
482 _ubh_clrblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
502 _ubh_setblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
[all...]
/linux-master/arch/mips/mti-malta/
H A Dmalta-memory.c27 static void free_init_pages_eva_malta(void *begin, void *end) argument
29 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin),
/linux-master/arch/riscv/include/asm/
H A Dalternative.h48 void andes_errata_patch_func(struct alt_entry *begin, struct alt_entry *end,
51 void sifive_errata_patch_func(struct alt_entry *begin, struct alt_entry *end,
54 void thead_errata_patch_func(struct alt_entry *begin, struct alt_entry *end,
58 void riscv_cpufeature_patch_func(struct alt_entry *begin, struct alt_entry *end,
/linux-master/arch/mips/mm/
H A Dsc-rm7k.c189 unsigned long flags, addr, begin, end, pow2; local
191 begin = (unsigned long) &_stext;
192 begin &= ~((8 * 1024 * 1024) - 1);
193 end = begin + (8 * 1024 * 1024);
201 for (addr = begin; addr <= end; addr = (begin + pow2)) {
210 cache_op(Index_Store_Tag_T, begin);
214 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) {
221 addr -= begin;
[all...]
/linux-master/arch/x86/include/asm/
H A Dstacktrace.h28 unsigned long *begin, *end, *next_sp; member in struct:stack_info
55 void *begin = info->begin; local
59 addr >= begin && addr < end &&
60 addr + len > begin && addr + len <= end);
/linux-master/drivers/gpu/drm/amd/display/dc/
H A Ddc_trace.h41 #define TRACE_DCN_FPU(begin, function, line, ref_count) \
42 trace_dcn_fpu(begin, function, line, ref_count)
/linux-master/arch/powerpc/perf/req-gen/
H A D_begin.h15 #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
/linux-master/include/asm-generic/
H A Dsections.h82 * @begin: virtual address of the beginning of the memory region
88 * contained within the memory region defined by @begin and @end, false
91 static inline bool memory_contains(void *begin, void *end, void *virt, argument
94 return virt >= begin && virt + size <= end;
100 * @begin: virtual address of the beginning of the memory region
106 * intersects with the region specified by @begin and @end, false otherwise.
108 static inline bool memory_intersects(void *begin, void *end, void *virt, argument
113 if (virt < end && vend > begin)
/linux-master/arch/mips/ath25/
H A Dboard.c61 const void __iomem *begin = limit - 0x1000; local
64 for (addr = begin; addr >= end; addr -= 0x1000)
74 const void __iomem *rcfg, *begin, *end; local
81 begin = bcfg + 0x1000;
83 for (rcfg = begin; rcfg < end; rcfg += 0x1000)
88 begin = bcfg + 0xf8;
90 for (rcfg = begin; rcfg < end; rcfg += 0x1000)
/linux-master/arch/riscv/kernel/
H A Dalternative.c27 void (*patch_func)(struct alt_entry *begin, struct alt_entry *end,
152 static void __init_or_module _apply_alternatives(struct alt_entry *begin, argument
160 riscv_cpufeature_patch_func(begin, end, stage);
165 cpu_mfr_info.patch_func(begin, end,
177 struct alt_entry *begin, *end; local
185 begin = (void *)hdr + alt->sh_offset,
188 _apply_alternatives((struct alt_entry *)begin,
/linux-master/drivers/platform/surface/aggregator/
H A Dssh_msgb.h19 * @begin: Pointer to the beginning of the allocated buffer space.
25 u8 *begin; member in struct:msgbuf
41 msgb->begin = ptr;
52 return msgb->ptr - msgb->begin;
120 u8 *const begin = msgb->ptr; local
129 msgb_push_crc(msgb, begin, msgb->ptr - begin);
/linux-master/drivers/md/persistent-data/
H A Ddm-space-map-metadata.c98 unsigned int begin; member in struct:bop_ring_buffer
105 brb->begin = 0;
111 return brb->begin == brb->end;
131 if (next == brb->begin)
151 bop = brb->bops + brb->begin;
161 brb->begin = brb_next(brb, brb->begin);
174 dm_block_t begin; member in struct:sm_metadata
314 for (i = smm->uncommitted.begin;
354 for (i = smm->uncommitted.begin;
[all...]
/linux-master/arch/arm/mach-shmobile/
H A Dsuspend.c37 .begin = shmobile_suspend_begin,
/linux-master/arch/mips/include/asm/
H A Dbootinfo.h103 unsigned long begin, unsigned long end);
105 extern void (*free_init_pages_eva)(void *begin, void *end);
/linux-master/scripts/gdb/linux/
H A Ddmesg.py73 begin_off = off + (prb_data_blk_lpos_type.get_type()['begin'].bitpos // 8)
109 begin = utils.read_ulong(desc, begin_off) % text_data_sz
115 if begin & 1 == 1:
119 if begin > end:
120 begin = 0
123 text_start = begin + utils.get_long_type().sizeof
/linux-master/arch/loongarch/kernel/
H A Dprocess.c235 unsigned long begin = (unsigned long)this_cpu_read(irq_stack); local
236 unsigned long end = begin + IRQ_STACK_START;
238 if (stack < begin || stack >= end)
245 info->begin = begin;
256 unsigned long begin = (unsigned long)task_stack_page(task); local
257 unsigned long end = begin + THREAD_SIZE;
259 if (stack < begin || stack >= end)
262 info->begin = begin;
[all...]

Completed in 1021 milliseconds

12345678910