/Linux-v5.15/fs/ufs/ |
D | util.h | 323 #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 …]
|
/Linux-v5.15/arch/x86/kernel/ |
D | dumpstack_32.c | 40 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 …]
|
D | dumpstack_64.c | 90 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; in in_irq_stack() local [all …]
|
D | sys_x86_64.c | 100 unsigned long *begin, unsigned long *end) in find_start_end() argument 110 *begin = 0x40000000; in find_start_end() 113 *begin = randomize_page(*begin, 0x02000000); in find_start_end() 118 *begin = get_mmap_base(1); in find_start_end() 132 unsigned long begin, end; in arch_get_unmapped_area() local 137 find_start_end(addr, flags, &begin, &end); in arch_get_unmapped_area() 152 info.low_limit = begin; in arch_get_unmapped_area()
|
/Linux-v5.15/arch/x86/lib/ |
D | atomic64_386_32.S | 21 #define BEGIN(op) \ macro 40 BEGIN(read) 47 BEGIN(set) 54 BEGIN(xchg) 63 BEGIN(add) 70 BEGIN(add_return) 79 BEGIN(sub) 86 BEGIN(sub_return) 98 BEGIN(inc) 105 BEGIN(inc_return) [all …]
|
/Linux-v5.15/arch/sh/mm/ |
D | cache-sh2a.c | 53 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 …]
|
D | cache-sh2.c | 21 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()
|
D | cache-sh3.c | 35 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-v5.15/samples/seccomp/ |
D | bpf-helper.c | 66 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-v5.15/drivers/md/persistent-data/ |
D | dm-space-map-metadata.c | 97 unsigned begin; member 104 brb->begin = 0; in brb_init() 110 return brb->begin == brb->end; in brb_empty() 129 if (next == brb->begin) in brb_push() 149 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 311 for (i = smm->uncommitted.begin; in sm_metadata_get_count() 351 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one() 455 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 …]
|
D | dm-space-map-disk.c | 30 dm_block_t begin; member 136 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, smd->begin, smd->ll.nr_blocks, b); in sm_disk_new_block() 139 * There's no free block between smd->begin and the end of the metadata device. in sm_disk_new_block() 140 * We search before smd->begin in case something has been freed. in sm_disk_new_block() 142 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, 0, smd->begin, b); in sm_disk_new_block() 148 smd->begin = *b + 1; in sm_disk_new_block() 226 smd->begin = 0; in dm_sm_disk_create() 260 smd->begin = 0; in dm_sm_disk_open()
|
/Linux-v5.15/drivers/media/usb/cx231xx/ |
D | cx231xx-dif.h | 22 /* 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-v5.15/arch/mips/mm/ |
D | sc-rm7k.c | 189 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-v5.15/include/asm-generic/ |
D | sections.h | 99 * @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()
|
/Linux-v5.15/tools/perf/util/ |
D | parse-events.l | 225 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 …]
|
/Linux-v5.15/tools/perf/tests/shell/ |
D | daemon.sh | 14 local line_name=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $2 }'` 15 local line_base=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $3 }'` 16 local line_output=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $4 }'` 17 local line_lock=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $5 }'` 18 local line_up=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $6 }'` 57 local line_name=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $2 }'` 58 local line_run=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $3 }'` 59 local line_base=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $4 }'` 60 local line_output=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $5 }'` 61 local line_control=`echo "${line}" | awk 'BEGIN { FS = ":" } ; { print $6 }'` [all …]
|
/Linux-v5.15/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_scan.l | 87 "/*" { BEGIN COMMENT; /* Enter comment eating state */ } 93 <COMMENT>"*"+"/" { BEGIN INITIAL; } 97 BEGIN CEXPR; 105 BEGIN INITIAL; 137 BEGIN STRING; 148 BEGIN INITIAL; 261 BEGIN INCLUDE; 266 <INCLUDE>[>] { BEGIN INITIAL; return yytext[0]; } 269 BEGIN INITIAL; 286 BEGIN MACRODEF; [all …]
|
/Linux-v5.15/arch/x86/include/asm/ |
D | stacktrace.h | 28 unsigned long *begin, *end, *next_sp; member 45 void *begin = info->begin; in on_stack() local 49 addr >= begin && addr < end && in on_stack() 50 addr + len > begin && addr + len <= end); in on_stack()
|
/Linux-v5.15/tools/testing/selftests/rcutorture/bin/ |
D | jitter.sh | 28 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-v5.15/arch/mips/ath25/ |
D | board.c | 61 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-v5.15/Documentation/admin-guide/kdump/ |
D | gdbmacros.txt | 185 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-v5.15/scripts/gdb/linux/ |
D | dmesg.py | 79 begin_off = off + (prb_data_blk_lpos_type.get_type()['begin'].bitpos // 8) 114 begin = utils.read_ulong(descs, desc_off + begin_off) % text_data_sz 118 if begin & 1 == 1: 122 if begin > end: 123 begin = 0 126 text_start = begin + utils.get_long_type().sizeof
|
/Linux-v5.15/lib/ |
D | ratelimit.c | 44 if (!rs->begin) in ___ratelimit() 45 rs->begin = jiffies; in ___ratelimit() 47 if (time_is_before_jiffies(rs->begin + rs->interval)) { in ___ratelimit() 56 rs->begin = jiffies; in ___ratelimit()
|
/Linux-v5.15/scripts/kconfig/ |
D | lexer.l | 139 BEGIN(STRING); 161 \n { BEGIN(INITIAL); return T_EOL; } 175 BEGIN(INITIAL); 186 BEGIN(INITIAL); 191 BEGIN(INITIAL); 244 BEGIN(INITIAL); 286 BEGIN(ASSIGN_VAL); 350 BEGIN(HELP); 356 BEGIN(INITIAL);
|
/Linux-v5.15/drivers/platform/surface/aggregator/ |
D | ssh_msgb.h | 19 * @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()
|