Home
last modified time | relevance | path

Searched refs:code_offset (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/MachO/Inputs/
H A Dcode-signature-check.py234 code_offset = args.code_offset
235 code_end = code_offset + args.code_size
237 args.binary.seek(code_offset)
245 read_size = min(page_size, code_end - code_offset)
248 code_offset += read_size
/llvm-project-15.0.7/lld/test/MachO/Inputs/
H A Dcode-signature-check.py234 code_offset = args.code_offset
235 code_end = code_offset + args.code_size
237 args.binary.seek(code_offset)
245 read_size = min(page_size, code_end - code_offset)
248 code_offset += read_size
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp1330 uint32_t code_offset = 0; in ParseInlineSite() local
1345 code_offset_base = code_offset; in ParseInlineSite()
1369 code_offset += annot.U1; in ParseInlineSite()
1377 code_offset += annot.U1; in ParseInlineSite()
1381 code_offset += annot.U1; in ParseInlineSite()
1386 code_offset += annot.U2; in ParseInlineSite()
1389 code_offset += annot.U1; in ParseInlineSite()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.h200 uint32_t code_offset = 0; member
H A DObjectFilePECOFF.cpp604 m_coff_header_opt.code_offset = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
1232 s->Printf(" code_offset = 0x%8.8x\n", header.code_offset); in DumpOptCOFFHeader()