reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
124 return reinterpret_cast<void *>(&UnwindCodes[(NumCodes+1) & ~1]); 129 return reinterpret_cast<const void *>(&UnwindCodes[(NumCodes + 1) & ~1]);tools/lldb/source/Plugins/ObjectFile/PECOFF/PECallFrameInfo.cpp
89 m_unwind_info->NumCodes * sizeof(UnwindCode)); 105 ((m_unwind_info->NumCodes + 1) & ~1) * sizeof(UnwindCode);tools/llvm-objdump/COFFDump.cpp
504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; 519 if (UI->NumCodes) 522 printAllUnwindCodes(makeArrayRef(&UI->UnwindCodes[0], UI->NumCodes));tools/llvm-readobj/Win64EHDumper.cpp
251 SW.printNumber("UnwindCodeCount", UI.NumCodes); 254 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes);