Home
last modified time | relevance | path

Searched refs:rel_offset (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/compiler-rt/lib/interception/
Dinterception_win.cpp402 static size_t GetInstructionSize(uptr address, size_t* rel_offset = nullptr) { in GetInstructionSize() argument
499 if (rel_offset) in GetInstructionSize()
500 *rel_offset = 2; in GetInstructionSize()
545 if (rel_offset) in GetInstructionSize()
546 *rel_offset = 3; in GetInstructionSize()
630 size_t rel_offset = 0; in CopyInstructions() local
631 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); in CopyInstructions()
634 if (rel_offset) { in CopyInstructions()
636 uptr relocated_offset = *(u32*)(to + cursor + rel_offset) - delta; in CopyInstructions()
641 *(u32*)(to + cursor + rel_offset) = relocated_offset; in CopyInstructions()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_draw_upload.c513 const uint32_t rel_offset = in brw_prepare_vertices() local
515 const uint32_t rel_end = rel_offset + glattrib->Format._ElementSize; in brw_prepare_vertices()
517 vertex_range_start = MIN2(vertex_range_start, rel_offset); in brw_prepare_vertices()
524 input->offset = rel_offset; in brw_prepare_vertices()
622 const uint32_t rel_offset = in brw_prepare_vertices() local
624 const uint32_t rel_end = rel_offset + glattrib->Format._ElementSize; in brw_prepare_vertices()
626 vertex_range_start = MIN2(vertex_range_start, rel_offset); in brw_prepare_vertices()
633 input->offset = rel_offset; in brw_prepare_vertices()
/external/llvm-project/llvm/test/CodeGen/MIR/AArch64/
Dcfi.mir28 ; CHECK: CFI_INSTRUCTION rel_offset $w30, -8
29 frame-setup CFI_INSTRUCTION rel_offset $w30, -8
/external/llvm-project/llvm/test/CodeGen/X86/
Dcfi-inserter-callee-save-register-2.mir50 CFI_INSTRUCTION rel_offset $r14, -24
/external/mesa3d/src/intel/compiler/
Dbrw_fs_copy_propagation.cpp612 const unsigned rel_offset = inst->src[arg].offset - entry->dst.offset; in try_copy_propagate() local
650 const unsigned component = rel_offset / type_sz(entry->dst.type); in try_copy_propagate()
651 const unsigned suboffset = rel_offset % type_sz(entry->dst.type); in try_copy_propagate()
Dbrw_fs.cpp3071 const int rel_offset = reg_offset(s) - reg_offset(r); in mask_relative_to() local
3072 const int shift = rel_offset / REG_SIZE; in mask_relative_to()
3073 const unsigned n = DIV_ROUND_UP(rel_offset % REG_SIZE + ds, REG_SIZE); in mask_relative_to()
3215 const unsigned rel_offset = reg_offset(scan_inst->dst) - in compute_to_mrf() local
3222 assert(rel_offset < 2 * REG_SIZE); in compute_to_mrf()
3223 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE * 4; in compute_to_mrf()
3235 scan_inst->dst.nr = inst->dst.nr + rel_offset / REG_SIZE; in compute_to_mrf()
3239 scan_inst->dst.offset = inst->dst.offset + rel_offset % REG_SIZE; in compute_to_mrf()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp855 uint64_t rel_offset; in GetImageInfoAddress() local
856 rel_offset = target->ReadUnsignedIntegerFromMemory( in GetImageInfoAddress()
858 if (error.Success() && rel_offset != UINT64_MAX) { in GetImageInfoAddress()
861 dyn_base + (offset - GetAddressByteSize()) + rel_offset; in GetImageInfoAddress()
/external/google-breakpad/src/third_party/libdisasm/swig/
Dlibdisasm_oop.i569 long rel_offset() { in rel_offset() function