HomeSort by: relevance | last modified time | path
    Searched defs:instruction_size (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.cc 614 size_t instruction_size = GetInstructionSize(address + cursor); local
615 if (!instruction_size)
617 cursor += instruction_size;
626 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); local
628 (size_t)instruction_size);
638 cursor += instruction_size;
723 size_t instruction_size = GetInstructionSize(old_func); local
724 if (instruction_size < kShortJumpInstructionLength ||
730 uptr trampoline_length = instruction_size + kDirectBranchLength;
734 if (!CopyInstructions(trampoline, old_func, instruction_size))
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_win.cpp 665 size_t instruction_size = GetInstructionSize(address + cursor); local
666 if (!instruction_size)
668 cursor += instruction_size;
677 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); local
679 (size_t)instruction_size);
689 cursor += instruction_size;
774 size_t instruction_size = GetInstructionSize(old_func); local
775 if (instruction_size < kShortJumpInstructionLength ||
781 uptr trampoline_length = instruction_size + kDirectBranchLength;
785 if (!CopyInstructions(trampoline, old_func, instruction_size))
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/interception/
interception_win.cpp 714 size_t instruction_size = GetInstructionSize(address + cursor); local
715 if (!instruction_size)
717 cursor += instruction_size;
726 size_t instruction_size = GetInstructionSize(from + cursor, &rel_offset); local
727 if (!instruction_size)
730 (size_t)instruction_size);
746 cursor += instruction_size;
831 size_t instruction_size = GetInstructionSize(old_func); local
832 if (instruction_size < kShortJumpInstructionLength ||
838 uptr trampoline_length = instruction_size + kDirectBranchLength
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
amdgpu-tdep.c 910 /* Try to read at most INSTRUCTION_SIZE bytes. */
912 amd_dbgapi_size_t instruction_size = gdbarch_max_insn_length (di->arch ()); local
913 gdb::byte_vector buffer (instruction_size);
920 while (instruction_size > 0)
923 instruction_size, info);
927 --instruction_size;
930 if (instruction_size == 0)
962 &instruction_size,
989 return static_cast<int> (instruction_size);
  /src/external/gpl3/gdb/dist/gdb/
amdgpu-tdep.c 911 /* Try to read at most INSTRUCTION_SIZE bytes. */
913 amd_dbgapi_size_t instruction_size = gdbarch_max_insn_length (di->arch ()); local
914 gdb::byte_vector buffer (instruction_size);
921 while (instruction_size > 0)
924 instruction_size, info);
928 --instruction_size;
931 if (instruction_size == 0)
963 &instruction_size,
990 return static_cast<int> (instruction_size);

Completed in 39 milliseconds