HomeSort by relevance Sort by last modified time
    Searched defs:rel32 (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/courgette/
disassembler_elf_32_x86.cc 131 // Find the rel32 relocations.
136 // Heuristic discovery of rel32 locations in instruction stream: are the
137 // next few bytes the start of an instruction containing a rel32
139 const uint8* rel32 = NULL; local
142 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
143 rel32 = p + 1;
149 rel32 = p + 2;
152 if (rel32) {
153 RVA rva = static_cast<RVA>(rel32 - adjust_pointer_to_rva)
    [all...]
disassembler_win32_x64.cc 361 HistogramTargets("rel32 relocs", rel32_target_rvas_);
445 // Find the rel32 relocations.
460 // Heuristic discovery of rel32 locations in instruction stream: are the
461 // next few bytes the start of an instruction containing a rel32
463 const uint8* rel32 = NULL; local
466 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
467 rel32 = p + 1;
473 rel32 = p + 2;
476 if (rel32) {
    [all...]
disassembler_win32_x86.cc 361 HistogramTargets("rel32 relocs", rel32_target_rvas_);
445 // Find the rel32 relocations.
460 // Heuristic discovery of rel32 locations in instruction stream: are the
461 // next few bytes the start of an instruction containing a rel32
463 const uint8* rel32 = NULL; local
466 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
467 rel32 = p + 1;
473 rel32 = p + 2;
476 if (rel32) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 867 ARMRelocator::Result rel32(Relocation& pReloc, ARMRelocator& pParent) function
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_prvt.h 226 #define rel32 {OpndKind_Imm, OpndSize_32, OpndExt_Any, RegName_Null} macro

Completed in 362 milliseconds