reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/MachO.h
 1773 inline void swapStruct(x86_exception_state_t &x) {
 1794     sizeof(x86_exception_state_t) / sizeof(uint32_t);
lib/Object/MachOObjectFile.cpp
 1084         if (state + sizeof(MachO::x86_exception_state_t) > end)
 1088         state += sizeof(MachO::x86_exception_state_t);
tools/llvm-objdump/MachODump.cpp
 9808         struct MachO::x86_exception_state_t es;
 9810         if (left >= sizeof(MachO::x86_exception_state_t)) {
 9811           memcpy(&es, begin, sizeof(MachO::x86_exception_state_t));
 9812           begin += sizeof(MachO::x86_exception_state_t);
 9814           memset(&es, '\0', sizeof(MachO::x86_exception_state_t));