Home
last modified time | relevance | path

Searched refs:read32be (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DSPARCV9.cpp105 write32be(loc, (read32be(loc) & ~0x3fffffff) | ((val >> 2) & 0x3fffffff)); in relocate()
110 write32be(loc, (read32be(loc) & ~0x003fffff) | (val & 0x003fffff)); in relocate()
116 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 10) & 0x003fffff)); in relocate()
121 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 10) & 0x003fffff)); in relocate()
126 write32be(loc, (read32be(loc) & ~0x0007ffff) | ((val >> 2) & 0x0007ffff)); in relocate()
131 write32be(loc, (read32be(loc) & ~0x000003ff) | (val & 0x000003ff)); in relocate()
135 write32be(loc, (read32be(loc) & ~0x00001fff) | (val & 0x000003ff)); in relocate()
145 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 42) & 0x003fffff)); in relocate()
149 write32be(loc, (read32be(loc) & ~0x00001fff) | ((val >> 32) & 0x000003ff)); in relocate()
154 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 22) & 0x003fffff)); in relocate()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp1079 uint32_t Size = support::endian::read32be(Obj->base() + Offset); in parseStringTable()
1392 return support::endian::read32be(Bytes.data()) == 0; in doesXCOFFTracebackTableBegin()
1410 uint32_t VecParmsTypeValue = support::endian::read32be(Ptr + 2); in TBVectorExt()
1550 (support::endian::read32be(TBPtr + (P)) & (TracebackTable::X))
1552 ((support::endian::read32be(TBPtr + (P)) & (TracebackTable::X)) >> \
H A DArchive.cpp1031 Offset = read32be(Offsets + SymbolIndex * 4); in getMember()
1140 symbol_count = read32be(buf); in symbol_begin()
1245 return read32be(buf); in getNumberOfSymbols()
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp236 read32be(&hdr->magic) != FAT_MAGIC) { in readFile()
253 for (uint32_t i = 0, n = read32be(&hdr->nfat_arch); i < n; ++i) { in readFile()
260 uint32_t cpuType = read32be(&arch[i].cputype); in readFile()
262 read32be(&arch[i].cpusubtype) & ~MachO::CPU_SUBTYPE_MASK; in readFile()
272 uint32_t offset = read32be(&arch[i].offset); in readFile()
273 uint32_t size = read32be(&arch[i].size); in readFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp179 if (support::endian::read32be(Bytes.slice(I, 4).data()) != 0) in dumpTracebackTable()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/
H A DPPCDisassembler.cpp366 : support::endian::read32be; in getInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSHA1.cpp226 InternalState.Buffer.L[I] = support::endian::read32be(&Data[I * 4]); in update()
H A DSHA256.cpp205 InternalState.Buffer.L[I] = support::endian::read32be(&Data[I * 4]); in update()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h434 [[nodiscard]] inline uint32_t read32be(const void *P) { in read32be() function
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp1707 llvm::support::endian::read32be(Metadata.data() + Index); in writeSectionForCInfoSymSectionEntry()
1716 W.write<uint32_t>(llvm::support::endian::read32be(LastWord.data())); in writeSectionForCInfoSymSectionEntry()
H A DMCAsmStreamer.cpp1028 uint32_t Word = llvm::support::endian::read32be(WordPtr); in emitXCOFFCInfoSym()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp1131 Builder.getInt32(endian::read32be(Options.Version)), in insertCounterWriteout()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp4855 Vals[Pos / 4] = support::endian::read32be(Hash.data() + Pos); in writeModuleHash()