Home
last modified time | relevance | path

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

12345678910>>...41

/linux/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/arch/x86/kernel/
H A Ddumpstack_32.c40 unsigned long *begin = (unsigned long *)this_cpu_read(pcpu_hot.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(pcpu_hot.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 …]
H A Ddumpstack_64.c96 unsigned long begin, end, stk = (unsigned long)stack; in in_exception_stack() local
103 begin = (unsigned long)__this_cpu_read(cea_exception_stacks); in in_exception_stack()
108 if (!begin) in in_exception_stack()
111 end = begin + sizeof(struct cea_exception_stacks); in in_exception_stack()
113 if (stk < begin || stk >= end) in in_exception_stack()
117 k = (stk - begin) >> PAGE_SHIFT; in in_exception_stack()
124 begin += (unsigned long)ep->offs; in in_exception_stack()
125 end = begin + (unsigned long)ep->size; in in_exception_stack()
129 info->begin = (unsigned long *)begin; in in_exception_stack()
138 unsigned long *begin; in in_irq_stack() local
[all …]
/linux/fs/ufs/
H A Dutil.h310 #define ubh_get_addr8(ubh,begin) \ argument
311 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
312 ((begin) & ~uspi->s_fmask))
314 #define ubh_get_addr16(ubh,begin) \ argument
315 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
316 ((begin) & ((uspi->fsize>>1) - 1)))
318 #define ubh_get_addr32(ubh,begin) \ argument
319 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
320 ((begin) & ((uspi->s_fsize>>2) - 1)))
322 #define ubh_get_addr64(ubh,begin) \ argument
[all …]
/linux/arch/sh/mm/
H A 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 …]
H A 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()
H A 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()
/linux/samples/seccomp/
H A 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()
/linux/drivers/md/persistent-data/
H A Ddm-space-map-metadata.c98 unsigned int begin; member
105 brb->begin = 0; in brb_init()
111 return brb->begin == brb->end; in brb_empty()
131 if (next == brb->begin) in brb_push()
151 bop = brb->bops + brb->begin; in brb_peek()
161 brb->begin = brb_next(brb, brb->begin); in brb_pop()
174 dm_block_t begin; member
314 for (i = smm->uncommitted.begin; in sm_metadata_get_count()
354 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one()
458 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 …]
H A Ddm-space-map-disk.c31 dm_block_t begin; member
139 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, smd->begin, smd->ll.nr_blocks, b); in sm_disk_new_block()
142 * There's no free block between smd->begin and the end of the metadata device. in sm_disk_new_block()
143 * We search before smd->begin in case something has been freed. in sm_disk_new_block()
145 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, 0, smd->begin, b); in sm_disk_new_block()
150 smd->begin = *b + 1; in sm_disk_new_block()
227 smd->begin = 0; in dm_sm_disk_create()
261 smd->begin = 0; in dm_sm_disk_open()
/linux/drivers/media/usb/cx231xx/
H A 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 …]
/linux/arch/mips/mm/
H A 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()
/linux/tools/perf/tests/shell/
H A Ddaemon.sh15 line_name=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $2 }'`
17 line_base=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $3 }'`
19 line_output=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $4 }'`
21 line_lock=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $5 }'`
23 line_up=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $6 }'`
63 line_name=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $2 }'`
65 line_run=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $3 }'`
67 line_base=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $4 }'`
69 line_output=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $5 }'`
71 line_control=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $6 }'`
[all …]
/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_scan.l90 "/*" { BEGIN COMMENT; /* Enter comment eating state */ }
96 <COMMENT>"*"+"/" { BEGIN INITIAL; }
100 BEGIN CEXPR;
108 BEGIN INITIAL;
140 BEGIN STRING;
151 BEGIN INITIAL;
264 BEGIN INCLUDE;
269 <INCLUDE>[>] { BEGIN INITIAL; return yytext[0]; }
272 BEGIN INITIAL;
289 BEGIN MACRODEF;
[all …]
/linux/arch/loongarch/kernel/
H A Dprocess.c235 unsigned long begin = (unsigned long)this_cpu_read(irq_stack); in in_irq_stack() local
236 unsigned long end = begin + IRQ_STACK_START; in in_irq_stack()
238 if (stack < begin || stack >= end) in in_irq_stack()
245 info->begin = begin; in in_irq_stack()
256 unsigned long begin = (unsigned long)task_stack_page(task); in in_task_stack() local
257 unsigned long end = begin + THREAD_SIZE; in in_task_stack()
259 if (stack < begin || stack >= end) in in_task_stack()
262 info->begin = begin; in in_task_stack()
/linux/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, in memory_contains() argument
94 return virt >= begin && virt + size <= end; in memory_contains()
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, in memory_intersects() argument
113 if (virt < end && vend > begin) in memory_intersects()
/linux/arch/x86/include/asm/
H A Dstacktrace.h28 unsigned long *begin, *end, *next_sp; member
55 void *begin = info->begin; in on_stack() local
59 addr >= begin && addr < end && in on_stack()
60 addr + len > begin && addr + len <= end); in on_stack()
/linux/arch/mips/ath25/
H A Dboard.c61 const void __iomem *begin = limit - 0x1000; in find_board_config() local
64 for (addr = begin; addr >= end; addr -= 0x1000) in find_board_config()
74 const void __iomem *rcfg, *begin, *end; in find_radio_config() local
81 begin = bcfg + 0x1000; in find_radio_config()
83 for (rcfg = begin; rcfg < end; rcfg += 0x1000) in find_radio_config()
88 begin = bcfg + 0xf8; in find_radio_config()
90 for (rcfg = begin; rcfg < end; rcfg += 0x1000) in find_radio_config()
/linux/Documentation/admin-guide/kdump/
H A Dgdbmacros.txt185 set var $begin = $desc->text_blk_lpos.begin % (1U << prb->text_data_ring.size_bits)
189 if ($begin & 1)
194 if ($begin > $next)
195 set var $begin = 0
199 set var $begin = $begin + sizeof(long)
202 if ($next - $begin < $info->text_len)
203 set var $text_len = $next - $begin
208 set var $log = &prb->text_data_ring.data[$begin]
/linux/tools/testing/selftests/rcutorture/bin/
H A Djitter.sh28 starttime=`gawk 'BEGIN { print systime(); }' < /dev/null`
45 t=`gawk -v s=$starttime 'BEGIN { print systime() - s; }' < /dev/null`
68 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN {
81 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN {
89 limit=`awk -v me=$me -v n=$n -v spinmax=$spinmax 'BEGIN {
/linux/scripts/kconfig/
H A Dlexer.l147 BEGIN(STRING);
169 \n { BEGIN(INITIAL); return T_EOL; }
183 BEGIN(INITIAL);
194 BEGIN(INITIAL);
199 BEGIN(INITIAL);
254 BEGIN(INITIAL);
294 BEGIN(ASSIGN_VAL);
361 BEGIN(HELP);
367 BEGIN(INITIAL);
/linux/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/drivers/platform/surface/aggregator/
H A Dssh_msgb.h19 * @begin: Pointer to the beginning of the allocated buffer space.
25 u8 *begin; member
41 msgb->begin = ptr; in msgb_init()
52 return msgb->ptr - msgb->begin; in msgb_bytes_used()
120 u8 *const begin = msgb->ptr; in msgb_push_frame() local
129 msgb_push_crc(msgb, begin, msgb->ptr - begin); in msgb_push_frame()
/linux/include/linux/
H A Dsuspend.h55 * @begin: Initialise a transition to given system sleep state.
56 * @begin() is executed right prior to suspending devices. The information
57 * conveyed to the platform code by @begin() should be disregarded by it as
58 * soon as @end() is executed. If @begin() fails (ie. returns nonzero),
64 * by @begin().
73 * state indicated by @begin().
80 * @enter: Enter the system sleep state indicated by @begin() or represented by
81 * the argument if @begin() is not implemented.
112 * that implement @begin(). Accordingly, platforms implementing @begin()
123 int (*begin)(suspend_state_t state); member
[all …]
/linux/Documentation/RCU/
H A Drculist_nulls.rst37 begin:
43 goto begin;
53 goto begin;
165 begin:
171 goto begin;
176 goto begin;
188 goto begin;

12345678910>>...41