Home
last modified time | relevance | path

Searched refs:write32be (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/ELF/Arch/
H A DSPARCV9.cpp96 write32be(loc, val); in relocate()
101 write32be(loc, val); in relocate()
107 write32be(loc, (read32be(loc) & ~0x3fffffff) | ((val >> 2) & 0x3fffffff)); in relocate()
112 write32be(loc, (read32be(loc) & ~0x003fffff) | (val & 0x003fffff)); in relocate()
118 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 10) & 0x003fffff)); in relocate()
123 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 10) & 0x003fffff)); in relocate()
128 write32be(loc, (read32be(loc) & ~0x0007ffff) | ((val >> 2) & 0x0007ffff)); in relocate()
133 write32be(loc, (read32be(loc) & ~0x000003ff) | (val & 0x000003ff)); in relocate()
137 write32be(loc, (read32be(loc) & ~0x00001fff) | (val & 0x000003ff)); in relocate()
147 write32be(loc, (read32be(loc) & ~0x003fffff) | ((val >> 42) & 0x003fffff)); in relocate()
[all …]
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.cpp1208 write32be(&superBlob->magic, CSMAGIC_EMBEDDED_SIGNATURE); in writeTo()
1209 write32be(&superBlob->length, signatureSize); in writeTo()
1210 write32be(&superBlob->count, 1); in writeTo()
1212 write32be(&blobIndex->type, CSSLOT_CODEDIRECTORY); in writeTo()
1213 write32be(&blobIndex->offset, blobHeadersSize); in writeTo()
1216 write32be(&codeDirectory->magic, CSMAGIC_CODEDIRECTORY); in writeTo()
1218 write32be(&codeDirectory->version, CS_SUPPORTSEXECSEG); in writeTo()
1219 write32be(&codeDirectory->flags, CS_ADHOC | CS_LINKER_SIGNED); in writeTo()
1220 write32be(&codeDirectory->hashOffset, in writeTo()
1224 write32be(&codeDirectory->nCodeSlots, getBlockCount()); in writeTo()
[all …]
/freebsd-13.1/contrib/xz/src/common/
H A Dtuklib_integer.h352 # define write32be(buf, num) write32ne(buf, conv32be(num)) macro
383 #ifndef write32be
385 write32be(uint8_t *buf, uint32_t num) in write32be() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp84 support::endian::write32be(&Data[Fixup.getOffset() + 4], Value); in applyFixup()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DDataEncoder.cpp130 write32be(m_start + offset, value); in PutU32()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DStringTableBuilder.cpp82 support::endian::write32be(Buf, Size); in write()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h98 write32be(loc, value); in write32()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h419 inline void write32be(void *P, uint32_t V) { write32<big>(P, V); } in write32be() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp926 support::endian::write32be(&RecordedHash[Pos], Val); in parseBlock()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp965 write32be(buf.data(), (uint32_t)value); in readFill()