Searched refs:read32be (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/lld/ELF/Arch/ |
| H A D | SPARCV9.cpp | 105 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 …]
|
| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | XCOFFObjectFile.cpp | 974 uint32_t Size = support::endian::read32be(Obj->base() + Offset); in parseStringTable() 1253 return support::endian::read32be(Bytes.data()) == 0; in doesXCOFFTracebackTableBegin() 1271 uint32_t VecParmsTypeValue = support::endian::read32be(Ptr + 2); in TBVectorExt() 1403 (support::endian::read32be(TBPtr + (P)) & (TracebackTable::X)) 1405 ((support::endian::read32be(TBPtr + (P)) & (TracebackTable::X)) >> \
|
| H A D | Archive.cpp | 975 Offset = read32be(Offsets + SymbolIndex * 4); in getMember() 1072 symbol_count = read32be(buf); in symbol_begin() 1132 return read32be(buf); in getNumberOfSymbols()
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | InputFiles.cpp | 213 read32be(&hdr->magic) != FAT_MAGIC) { in readFile() 226 for (uint32_t i = 0, n = read32be(&hdr->nfat_arch); i < n; ++i) { in readFile() 233 if (read32be(&arch[i].cputype) != static_cast<uint32_t>(target->cpuType) || in readFile() 234 read32be(&arch[i].cpusubtype) != target->cpuSubtype) in readFile() 237 uint32_t offset = read32be(&arch[i].offset); in readFile() 238 uint32_t size = read32be(&arch[i].size); in readFile()
|
| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/Disassembler/ |
| H A D | PPCDisassembler.cpp | 422 : support::endian::read32be; in getInstruction()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Endian.h | 384 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be() function
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | SHA1.cpp | 231 InternalState.Buffer.L[I] = support::endian::read32be(&Data[I * 4]); in update()
|
| H A D | SHA256.cpp | 210 InternalState.Buffer.L[I] = support::endian::read32be(&Data[I * 4]); in update()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 1126 Builder.getInt32(endian::read32be(Options.Version)), in insertCounterWriteout()
|
| /llvm-project-15.0.7/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 4442 Vals[Pos / 4] = support::endian::read32be(Hash.data() + Pos); in writeModuleHash()
|