Home
last modified time | relevance | path

Searched refs:next_addr (Results 1 – 9 of 9) sorted by relevance

/linux/arch/riscv/kernel/
H A Dkgdb.c37 static int get_step_address(struct pt_regs *regs, unsigned long *next_addr) in get_step_address() argument
50 *next_addr = regs_ptr[rs1_num]; in get_step_address()
53 *next_addr = RVC_EXTRACT_JTYPE_IMM(op_code) + pc; in get_step_address()
58 *next_addr = RVC_EXTRACT_BTYPE_IMM(op_code) + pc; in get_step_address()
60 *next_addr = pc + 2; in get_step_address()
65 *next_addr = RVC_EXTRACT_BTYPE_IMM(op_code) + pc; in get_step_address()
67 *next_addr = pc + 2; in get_step_address()
69 *next_addr = pc + 2; in get_step_address()
101 *next_addr = imm + pc; in get_step_address()
103 *next_addr = pc + 4; in get_step_address()
[all …]
/linux/arch/loongarch/kernel/
H A Dkgdb.c296 static int get_step_address(struct pt_regs *regs, unsigned long *next_addr) in get_step_address() argument
308 *next_addr = pc + LOONGARCH_INSN_SIZE; in get_step_address()
314 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 27); in get_step_address()
317 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 27); in get_step_address()
330 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address()
334 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address()
338 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address()
340 *next_addr = pc + sign_extend64((si_h << 16 | si_l) << 2, 22); in get_step_address()
350 *next_addr = pc + sign_extend64(si << 2, 17); in get_step_address()
354 *next_addr = pc + sign_extend64(si << 2, 17); in get_step_address()
[all …]
/linux/mm/kmsan/
H A Dcore.c333 u64 cur_addr = (u64)addr, next_addr = cur_addr + PAGE_SIZE; in kmsan_metadata_is_contiguous() local
352 for (; next_addr < (u64)addr + size; in kmsan_metadata_is_contiguous()
353 cur_addr = next_addr, cur_shadow = next_shadow, in kmsan_metadata_is_contiguous()
354 cur_origin = next_origin, next_addr += PAGE_SIZE) { in kmsan_metadata_is_contiguous()
355 next_shadow = kmsan_get_metadata((void *)next_addr, false); in kmsan_metadata_is_contiguous()
356 next_origin = kmsan_get_metadata((void *)next_addr, true); in kmsan_metadata_is_contiguous()
374 (void *)cur_addr, (void *)next_addr); in kmsan_metadata_is_contiguous()
/linux/kernel/bpf/
H A Dtask_iter.c846 u64 next_addr; member
923 kit->data->next_addr = addr; in bpf_iter_task_vma_new()
956 vma_iter_init(&vmi, data->mm, data->next_addr); in bpf_iter_task_vma_find_next()
968 if (end <= data->next_addr) in bpf_iter_task_vma_find_next()
969 data->next_addr += PAGE_SIZE; in bpf_iter_task_vma_find_next()
971 data->next_addr = end; in bpf_iter_task_vma_find_next()
975 if (unlikely(vma->vm_end <= data->next_addr)) { in bpf_iter_task_vma_find_next()
976 data->next_addr += PAGE_SIZE; in bpf_iter_task_vma_find_next()
1020 kit->data->next_addr = vma->vm_end; in bpf_iter_task_vma_next()
/linux/tools/testing/selftests/proc/
H A Dproc-maps-race.c124 void *next_addr; in read_two_pages()
543 return mremap(self->mod_info->next_addr + self->page_size * 2, self->page_size, in FIXTURE_TEARDOWN()
681 mod_info->next_addr = NULL; in TEST_F()
690 mod_info->next_addr = mod_info->child_mapped_addr[i]; in TEST_F()
693 if (mod_info->addr && mod_info->next_addr) in TEST_F()
696 ASSERT_TRUE(mod_info->addr && mod_info->next_addr); in TEST_F()
97 void *next_addr; global() member
/linux/drivers/rapidio/devices/
H A Dtsi721_dma.c417 dma_addr_t next_addr; in tsi721_submit_sg() local
438 next_addr = -1; in tsi721_submit_sg()
472 if (next_addr == sg_dma_address(sg) && in tsi721_submit_sg()
477 } else if (next_addr != -1) { in tsi721_submit_sg()
505 next_addr = sg_dma_address(sg); in tsi721_submit_sg()
524 next_addr += sg_dma_len(sg); in tsi721_submit_sg()
/linux/include/uapi/linux/genwqe/
H A Dgenwqe_card.h406 __u64 next_addr; /* chaining genwqe_ddcb_cmd */ member
/linux/drivers/media/pci/pt1/
H A Dpt1.c1036 int clock, int data, int next_addr) in pt1_i2c_emit() argument
1039 !clock << 11 | !data << 10 | next_addr); in pt1_i2c_emit()
/linux/drivers/net/ethernet/hisilicon/
H A Dhip04_eth.c186 u32 next_addr;