Home
last modified time | relevance | path

Searched full:begin (Results 1 – 25 of 2083) sorted by relevance

12345678910>>...84

/kernel/linux/linux-4.19/fs/ufs/
Dutil.h323 #define ubh_get_addr8(ubh,begin) \ argument
324 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
325 ((begin) & ~uspi->s_fmask))
327 #define ubh_get_addr16(ubh,begin) \ argument
328 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
329 ((begin) & ((uspi->fsize>>1) - 1)))
331 #define ubh_get_addr32(ubh,begin) \ argument
332 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
333 ((begin) & ((uspi->s_fsize>>2) - 1)))
335 #define ubh_get_addr64(ubh,begin) \ argument
[all …]
/kernel/linux/linux-5.10/fs/ufs/
Dutil.h323 #define ubh_get_addr8(ubh,begin) \ argument
324 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
325 ((begin) & ~uspi->s_fmask))
327 #define ubh_get_addr16(ubh,begin) \ argument
328 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
329 ((begin) & ((uspi->fsize>>1) - 1)))
331 #define ubh_get_addr32(ubh,begin) \ argument
332 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
333 ((begin) & ((uspi->s_fsize>>2) - 1)))
335 #define ubh_get_addr64(ubh,begin) \ argument
[all …]
/kernel/linux/linux-5.10/arch/x86/kernel/
Ddumpstack_32.c40 unsigned long *begin = (unsigned long *)this_cpu_read(hardirq_stack_ptr); in in_hardirq_stack() local
41 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_hardirq_stack()
47 if (stack < begin || stack > end) in in_hardirq_stack()
51 info->begin = begin; in in_hardirq_stack()
58 info->next_sp = (unsigned long *)*begin; in in_hardirq_stack()
65 unsigned long *begin = (unsigned long *)this_cpu_read(softirq_stack_ptr); in in_softirq_stack() local
66 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_softirq_stack()
72 if (stack < begin || stack > end) in in_softirq_stack()
76 info->begin = begin; in in_softirq_stack()
83 info->next_sp = (unsigned long *)*begin; in in_softirq_stack()
[all …]
Ddumpstack_64.c90 unsigned long begin, end, stk = (unsigned long)stack; in in_exception_stack() local
97 begin = (unsigned long)__this_cpu_read(cea_exception_stacks); in in_exception_stack()
102 if (!begin) in in_exception_stack()
105 end = begin + sizeof(struct cea_exception_stacks); in in_exception_stack()
107 if (stk < begin || stk >= end) in in_exception_stack()
111 k = (stk - begin) >> PAGE_SHIFT; in in_exception_stack()
118 begin += (unsigned long)ep->offs; in in_exception_stack()
119 end = begin + (unsigned long)ep->size; in in_exception_stack()
123 info->begin = (unsigned long *)begin; in in_exception_stack()
132 unsigned long *begin = end - (IRQ_STACK_SIZE / sizeof(long)); in in_irq_stack() local
[all …]
/kernel/linux/linux-4.19/arch/x86/lib/
Datomic64_386_32.S25 #define BEGIN(op) \ macro
44 BEGIN(read)
51 BEGIN(set)
58 BEGIN(xchg)
67 BEGIN(add)
74 BEGIN(add_return)
83 BEGIN(sub)
90 BEGIN(sub_return)
102 BEGIN(inc)
109 BEGIN(inc_return)
[all …]
/kernel/linux/linux-4.19/arch/x86/kernel/
Ddumpstack_32.c37 unsigned long *begin = (unsigned long *)this_cpu_read(hardirq_stack); in in_hardirq_stack() local
38 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_hardirq_stack()
44 if (stack <= begin || stack > end) in in_hardirq_stack()
48 info->begin = begin; in in_hardirq_stack()
55 info->next_sp = (unsigned long *)*begin; in in_hardirq_stack()
62 unsigned long *begin = (unsigned long *)this_cpu_read(softirq_stack); in in_softirq_stack() local
63 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_softirq_stack()
69 if (stack <= begin || stack > end) in in_softirq_stack()
73 info->begin = begin; in in_softirq_stack()
80 info->next_sp = (unsigned long *)*begin; in in_softirq_stack()
Ddumpstack_64.c57 unsigned long *begin, *end; in in_exception_stack() local
65 begin = end - (exception_stack_sizes[k] / sizeof(long)); in in_exception_stack()
68 if (stack <= begin || stack >= end) in in_exception_stack()
72 info->begin = begin; in in_exception_stack()
85 unsigned long *begin = end - (IRQ_STACK_SIZE / sizeof(long)); in in_irq_stack() local
91 if (stack <= begin || stack > end) in in_irq_stack()
95 info->begin = begin; in in_irq_stack()
/kernel/linux/linux-4.19/arch/sh/mm/
Dcache-sh2a.c54 unsigned long begin, end; in sh2a__flush_wback_region() local
58 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_wback_region()
67 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region()
68 begin = CACHE_OC_ADDRESS_ARRAY; in sh2a__flush_wback_region()
69 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region()
71 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region()
79 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region()
95 unsigned long begin, end; in sh2a__flush_purge_region() local
98 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_purge_region()
105 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region()
[all …]
Dcache-sh2.c22 unsigned long begin, end; in sh2__flush_wback_region() local
24 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_wback_region()
27 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2__flush_wback_region()
43 unsigned long begin, end; in sh2__flush_purge_region() local
45 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_purge_region()
49 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_purge_region()
74 unsigned long begin, end; in sh2__flush_invalidate_region()
76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_invalidate_region()
80 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_invalidate_region()
Dcache-sh3.c38 unsigned long begin, end; in sh3__flush_wback_region() local
41 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_wback_region()
45 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_wback_region()
77 unsigned long begin, end; in sh3__flush_purge_region() local
79 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_purge_region()
83 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_purge_region()
/kernel/linux/linux-5.10/arch/sh/mm/
Dcache-sh2a.c53 unsigned long begin, end; in sh2a__flush_wback_region() local
57 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_wback_region()
66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region()
67 begin = CACHE_OC_ADDRESS_ARRAY; in sh2a__flush_wback_region()
68 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region()
70 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region()
78 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region()
94 unsigned long begin, end; in sh2a__flush_purge_region() local
97 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_purge_region()
104 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region()
[all …]
Dcache-sh2.c21 unsigned long begin, end; in sh2__flush_wback_region() local
23 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_wback_region()
26 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2__flush_wback_region()
42 unsigned long begin, end; in sh2__flush_purge_region() local
44 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_purge_region()
48 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_purge_region()
73 unsigned long begin, end; in sh2__flush_invalidate_region()
75 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_invalidate_region()
79 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_invalidate_region()
Dcache-sh3.c35 unsigned long begin, end; in sh3__flush_wback_region() local
38 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_wback_region()
42 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_wback_region()
74 unsigned long begin, end; in sh3__flush_purge_region() local
76 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_purge_region()
80 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_purge_region()
/kernel/linux/linux-4.19/samples/seccomp/
Dbpf-helper.c66 struct __bpf_label *begin = labels->labels, *end; in seccomp_bpf_label() local
74 begin->label = label; in seccomp_bpf_label()
75 begin->location = 0xffffffff; in seccomp_bpf_label()
79 end = begin + labels->count; in seccomp_bpf_label()
80 for (id = 0; begin < end; ++begin, ++id) { in seccomp_bpf_label()
81 if (!strcmp(label, begin->label)) in seccomp_bpf_label()
84 begin->label = label; in seccomp_bpf_label()
85 begin->location = 0xffffffff; in seccomp_bpf_label()
/kernel/linux/linux-5.10/samples/seccomp/
Dbpf-helper.c66 struct __bpf_label *begin = labels->labels, *end; in seccomp_bpf_label() local
74 begin->label = label; in seccomp_bpf_label()
75 begin->location = 0xffffffff; in seccomp_bpf_label()
79 end = begin + labels->count; in seccomp_bpf_label()
80 for (id = 0; begin < end; ++begin, ++id) { in seccomp_bpf_label()
81 if (!strcmp(label, begin->label)) in seccomp_bpf_label()
84 begin->label = label; in seccomp_bpf_label()
85 begin->location = 0xffffffff; in seccomp_bpf_label()
/kernel/linux/linux-4.19/scripts/kconfig/
Dzconf.l94 BEGIN(COMMAND);
99 BEGIN(COMMAND);
109 BEGIN(PARAM);
124 "=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_RECURSIVE; return T_ASSIGN; }
125 ":=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_SIMPLE; return T_ASSIGN; }
126 "+=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_APPEND; return T_ASSIGN; }
130 BEGIN(INITIAL);
141 \n { BEGIN(INITIAL); return T_EOL; }
160 BEGIN(STRING);
162 \n BEGIN(INITIAL); return T_EOL;
[all …]
/kernel/linux/linux-5.10/drivers/md/persistent-data/
Ddm-space-map-metadata.c96 unsigned begin; member
103 brb->begin = 0; in brb_init()
109 return brb->begin == brb->end; in brb_empty()
128 if (next == brb->begin) in brb_push()
147 bop = brb->bops + brb->begin; in brb_peek()
159 brb->begin = brb_next(brb, brb->begin); in brb_pop()
172 dm_block_t begin; member
312 for (i = smm->uncommitted.begin; in sm_metadata_get_count()
352 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one()
454 r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); in sm_metadata_new_block_()
[all …]
/kernel/linux/linux-4.19/drivers/md/persistent-data/
Ddm-space-map-metadata.c96 unsigned begin; member
103 brb->begin = 0; in brb_init()
109 return brb->begin == brb->end; in brb_empty()
128 if (next == brb->begin) in brb_push()
147 bop = brb->bops + brb->begin; in brb_peek()
159 brb->begin = brb_next(brb, brb->begin); in brb_pop()
172 dm_block_t begin; member
312 for (i = smm->uncommitted.begin; in sm_metadata_get_count()
352 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one()
454 r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); in sm_metadata_new_block_()
[all …]
/kernel/linux/linux-4.19/drivers/media/usb/cx231xx/
Dcx231xx-dif.h31 /* BEGIN - DIF BPF register values from 30_quant.dat*/
55 /* BEGIN - DIF BPF register values from 31_quant.dat*/
79 /* BEGIN - DIF BPF register values from 32_quant.dat*/
103 /* BEGIN - DIF BPF register values from 33_quant.dat*/
127 /* BEGIN - DIF BPF register values from 34_quant.dat*/
151 /* BEGIN - DIF BPF register values from 35_quant.dat*/
175 /* BEGIN - DIF BPF register values from 36_quant.dat*/
199 /* BEGIN - DIF BPF register values from 37_quant.dat*/
223 /* BEGIN - DIF BPF register values from 38_quant.dat*/
247 /* BEGIN - DIF BPF register values from 39_quant.dat*/
[all …]
/kernel/linux/linux-5.10/drivers/media/usb/cx231xx/
Dcx231xx-dif.h22 /* BEGIN - DIF BPF register values from 30_quant.dat*/
46 /* BEGIN - DIF BPF register values from 31_quant.dat*/
70 /* BEGIN - DIF BPF register values from 32_quant.dat*/
94 /* BEGIN - DIF BPF register values from 33_quant.dat*/
118 /* BEGIN - DIF BPF register values from 34_quant.dat*/
142 /* BEGIN - DIF BPF register values from 35_quant.dat*/
166 /* BEGIN - DIF BPF register values from 36_quant.dat*/
190 /* BEGIN - DIF BPF register values from 37_quant.dat*/
214 /* BEGIN - DIF BPF register values from 38_quant.dat*/
238 /* BEGIN - DIF BPF register values from 39_quant.dat*/
[all …]
/kernel/linux/linux-4.19/include/asm-generic/
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, in memory_contains() argument
94 return virt >= begin && virt + size <= end; in memory_contains()
100 * @begin: virtual address of the beginning of the memory regien
106 * intersects with the region specified by @begin and @end, false otherwise.
108 static inline bool memory_intersects(void *begin, void *end, void *virt, in memory_intersects() argument
113 return (virt >= begin && virt < end) || (vend >= begin && vend < end); in memory_intersects()
/kernel/linux/linux-4.19/arch/mips/mm/
Dsc-rm7k.c189 unsigned long flags, addr, begin, end, pow2; in __probe_tcache() local
191 begin = (unsigned long) &_stext; in __probe_tcache()
192 begin &= ~((8 * 1024 * 1024) - 1); in __probe_tcache()
193 end = begin + (8 * 1024 * 1024); in __probe_tcache()
201 for (addr = begin; addr <= end; addr = (begin + pow2)) { in __probe_tcache()
210 cache_op(Index_Store_Tag_T, begin); in __probe_tcache()
214 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { in __probe_tcache()
221 addr -= begin; in __probe_tcache()
/kernel/linux/linux-5.10/arch/mips/mm/
Dsc-rm7k.c189 unsigned long flags, addr, begin, end, pow2; in __probe_tcache() local
191 begin = (unsigned long) &_stext; in __probe_tcache()
192 begin &= ~((8 * 1024 * 1024) - 1); in __probe_tcache()
193 end = begin + (8 * 1024 * 1024); in __probe_tcache()
201 for (addr = begin; addr <= end; addr = (begin + pow2)) { in __probe_tcache()
210 cache_op(Index_Store_Tag_T, begin); in __probe_tcache()
214 for (addr = begin + (512 * 1024); addr <= end; addr = begin + pow2) { in __probe_tcache()
221 addr -= begin; in __probe_tcache()
/kernel/linux/linux-5.10/include/asm-generic/
Dsections.h99 * @begin: virtual address of the beginning of the memory region
105 * contained within the memory region defined by @begin and @end, false
108 static inline bool memory_contains(void *begin, void *end, void *virt, in memory_contains() argument
111 return virt >= begin && virt + size <= end; in memory_contains()
117 * @begin: virtual address of the beginning of the memory regien
123 * intersects with the region specified by @begin and @end, false otherwise.
125 static inline bool memory_intersects(void *begin, void *end, void *virt, in memory_intersects() argument
130 return (virt >= begin && virt < end) || (vend >= begin && vend < end); in memory_intersects()
/kernel/linux/linux-5.10/tools/perf/util/
Dparse-events.l225 BEGIN(config);
227 BEGIN(event);
245 BEGIN(INITIAL);
253 BEGIN(INITIAL);
259 BEGIN(INITIAL);
268 "]" { BEGIN(config); return ']'; }
301 "/" { BEGIN(INITIAL); return '/'; }
304 "[" { BEGIN(array); return '['; }
320 . { unput(*yytext); BEGIN(INITIAL); }
325 <<EOF>> { BEGIN(INITIAL); }
[all …]

12345678910>>...84