/Linux-v5.4/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.4/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.4/arch/x86/kernel/ |
D | dumpstack_32.c | 37 unsigned long *begin = (unsigned long *)this_cpu_read(hardirq_stack_ptr); 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_ptr); 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()
|
D | dumpstack_64.c | 89 unsigned long begin, end, stk = (unsigned long)stack; in in_exception_stack() local 96 begin = (unsigned long)__this_cpu_read(cea_exception_stacks); in in_exception_stack() 101 if (!begin) in in_exception_stack() 104 end = begin + sizeof(struct cea_exception_stacks); in in_exception_stack() 106 if (stk < begin || stk >= end) in in_exception_stack() 110 k = (stk - begin) >> PAGE_SHIFT; in in_exception_stack() 117 begin += (unsigned long)ep->offs; in in_exception_stack() 118 end = begin + (unsigned long)ep->size; in in_exception_stack() 122 info->begin = (unsigned long *)begin; in in_exception_stack() 131 unsigned long *begin = end - (IRQ_STACK_SIZE / sizeof(long)); in in_irq_stack() local [all …]
|
D | sys_x86_64.c | 106 unsigned long *begin, unsigned long *end) in find_start_end() argument 116 *begin = 0x40000000; in find_start_end() 119 *begin = randomize_page(*begin, 0x02000000); in find_start_end() 124 *begin = get_mmap_base(1); in find_start_end() 138 unsigned long begin, end; in arch_get_unmapped_area() local 147 find_start_end(addr, flags, &begin, &end); in arch_get_unmapped_area() 162 info.low_limit = begin; in arch_get_unmapped_area()
|
/Linux-v5.4/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 | 37 unsigned long begin, end; in sh3__flush_wback_region() local 40 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_wback_region() 44 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_wback_region() 76 unsigned long begin, end; in sh3__flush_purge_region() local 78 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh3__flush_purge_region() 82 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh3__flush_purge_region()
|
/Linux-v5.4/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.4/drivers/md/persistent-data/ |
D | dm-space-map-metadata.c | 96 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() 451 r = sm_ll_find_free_block(&smm->old_ll, smm->begin, smm->old_ll.nr_blocks, b); in sm_metadata_new_block_() [all …]
|
D | dm-space-map-common.c | 168 static int sm_find_free(void *addr, unsigned begin, unsigned end, in sm_find_free() argument 171 while (begin < end) { in sm_find_free() 172 if (!(begin & (ENTRIES_PER_WORD - 1)) && in sm_find_free() 173 dm_bitmap_word_used(addr, begin)) { in sm_find_free() 174 begin += ENTRIES_PER_WORD; in sm_find_free() 178 if (!sm_lookup_bitmap(addr, begin)) { in sm_find_free() 179 *result = begin; in sm_find_free() 183 begin++; in sm_find_free() 329 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin, in sm_ll_find_free_block() argument 334 dm_block_t i, index_begin = begin; in sm_ll_find_free_block() [all …]
|
/Linux-v5.4/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.4/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.4/include/asm-generic/ |
D | sections.h | 96 * @begin: virtual address of the beginning of the memory region 102 * contained within the memory region defined by @begin and @end, false 105 static inline bool memory_contains(void *begin, void *end, void *virt, in memory_contains() argument 108 return virt >= begin && virt + size <= end; in memory_contains() 114 * @begin: virtual address of the beginning of the memory regien 120 * intersects with the region specified by @begin and @end, false otherwise. 122 static inline bool memory_intersects(void *begin, void *end, void *virt, in memory_intersects() argument 127 return (virt >= begin && virt < end) || (vend >= begin && vend < end); in memory_intersects()
|
/Linux-v5.4/tools/perf/util/ |
D | parse-events.l | 218 BEGIN(config); 220 BEGIN(event); 238 BEGIN(INITIAL); 246 BEGIN(INITIAL); 252 BEGIN(INITIAL); 259 "]" { BEGIN(config); return ']'; } 289 "/" { BEGIN(INITIAL); return '/'; } 292 "[" { BEGIN(array); return '['; } 308 . { unput(*yytext); BEGIN(INITIAL); } 313 <<EOF>> { BEGIN(INITIAL); } [all …]
|
/Linux-v5.4/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.4/arch/x86/include/asm/ |
D | stacktrace.h | 28 unsigned long *begin, *end, *next_sp; member 43 void *begin = info->begin; in on_stack() local 47 addr >= begin && addr < end && in on_stack() 48 addr + len > begin && addr + len <= end); in on_stack()
|
/Linux-v5.4/tools/testing/selftests/rcutorture/bin/ |
D | jitter.sh | 26 starttime=`awk 'BEGIN { print systime(); }' < /dev/null` 31 t=`awk -v s=$starttime 'BEGIN { print systime() - s; }' < /dev/null` 46 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN { 63 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN { 71 limit=`awk -v me=$me -v n=$n -v spinmax=$spinmax 'BEGIN {
|
/Linux-v5.4/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.4/Documentation/RCU/ |
D | rculist_nulls.txt | 16 begin: 20 goto begin; 28 goto begin; 130 begin: 134 goto begin; 137 goto begin; 147 goto begin;
|
/Linux-v5.4/Documentation/devicetree/bindings/ |
D | xilinx.txt | 36 (ip-core-name): the name of the ip block (given after the BEGIN 56 BEGIN opb_uartlite 103 BEGIN opb_ps2_dual_ref 150 BEGIN ppc405_virtex4 157 BEGIN opb_intc 165 BEGIN opb_uart16550 173 BEGIN plb_v34 178 BEGIN plb_bram_if_cntlr 186 BEGIN plb2opb_bridge
|
/Linux-v5.4/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.4/scripts/kconfig/ |
D | lexer.l | 143 BEGIN(STRING); 165 \n { BEGIN(INITIAL); return T_EOL; } 179 BEGIN(INITIAL); 190 BEGIN(INITIAL); 195 BEGIN(INITIAL); 248 BEGIN(INITIAL); 290 BEGIN(ASSIGN_VAL); 354 BEGIN(HELP); 360 BEGIN(INITIAL);
|
/Linux-v5.4/include/linux/ |
D | suspend.h | 111 * @begin: Initialise a transition to given system sleep state. 112 * @begin() is executed right prior to suspending devices. The information 113 * conveyed to the platform code by @begin() should be disregarded by it as 114 * soon as @end() is executed. If @begin() fails (ie. returns nonzero), 120 * by @begin(). 129 * state indicated by @begin(). 136 * @enter: Enter the system sleep state indicated by @begin() or represented by 137 * the argument if @begin() is not implemented. 168 * that implement @begin(). Accordingly, platforms implementing @begin() 179 int (*begin)(suspend_state_t state); member [all …]
|
/Linux-v5.4/Documentation/firmware-guide/acpi/ |
D | method-tracing.rst | 85 …[ 0.186427] exdebug-0398 ex_trace_point : Method Begin [0xf58394d8:\_SB.PCI0.LPCB.ECOK… 86 [ 0.186630] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905c88:If] execution. 87 [ 0.186820] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905cc0:LEqual] execution. 88 …[ 0.187010] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905a20:-NamePath-] executi… 90 [ 0.187407] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905f60:One] execution. 93 [ 0.187980] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905cc0:Return] execution. 94 [ 0.188146] exdebug-0398 ex_trace_point : Opcode Begin [0xf5905f60:One] execution.
|