Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/ELF/Arch/
H A DSPARCV9.cpp82 write32be(Loc, Val); in relocateOne()
87 write32be(Loc, Val); in relocateOne()
93 write32be(Loc, (read32be(Loc) & ~0x3fffffff) | ((Val >> 2) & 0x3fffffff)); in relocateOne()
98 write32be(Loc, (read32be(Loc) & ~0x003fffff) | (Val & 0x003fffff)); in relocateOne()
103 write32be(Loc, (read32be(Loc) & ~0x003fffff) | ((Val >> 10) & 0x003fffff)); in relocateOne()
108 write32be(Loc, (read32be(Loc) & ~0x0007ffff) | ((Val >> 2) & 0x0007ffff)); in relocateOne()
113 write32be(Loc, (read32be(Loc) & ~0x000003ff) | (Val & 0x000003ff)); in relocateOne()
H A DPPC.cpp64 write32be(Loc, Val); in relocateOne()
67 write32be(Loc, read32be(Loc) | (Val & 0xFFFC)); in relocateOne()
71 write32be(Loc, read32be(Loc) | (Val & 0x3FFFFFC)); in relocateOne()
/freebsd-12.1/contrib/xz/src/common/
H A Dtuklib_integer.h243 #define write32be(buf, num) write32ne((buf), conv32be(num)) macro
289 # define unaligned_write32be write32be
/freebsd-12.1/contrib/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp93 support::endian::write32be(&Data[Fixup.getOffset() + 4], Value); in applyFixup()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DDataEncoder.cpp185 write32be(m_start + offset, value); in PutU32()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h99 write32be(loc, value); in write32()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DEndian.h407 inline void write32be(void *P, uint32_t V) { write32<big>(P, V); } in write32be() function
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DScriptParser.cpp897 write32be(Buf.data(), V); in parseFill()