Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h401 inline void write64(void *P, uint64_t V, endianness E) { in write64() function
411 template <endianness E> inline void write64(void *P, uint64_t V) { in write64() function
417 inline void write64le(void *P, uint64_t V) { write64<little>(P, V); } in write64le()
420 inline void write64be(void *P, uint64_t V) { write64<big>(P, V); } in write64be()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DTarget.h288 inline void write64(void *p, uint64_t v) { in write64() function
289 llvm::support::endian::write64(p, v, config->endianness); in write64()
H A DOutputSections.cpp322 write64(buf, data); in writeInt()
H A DSyntheticSections.cpp64 write64(buf, val); in writeUint()
3719 write64(buf, sym->getVA(addend) + in writeTo()
/freebsd-13.1/contrib/llvm-project/lld/ELF/Arch/
H A DAArch64.cpp217 write64(buf, in.plt->getVA()); in writeGotPlt()
358 write64(loc, val); in relocate()
491 write64(loc + 8, val); in relocate()
H A DPPC64.cpp197 write64(loc, insn); in writePrefixedInstruction()
1088 write64(buf, getPPC64TocBase()); in writeGotHeader()
1111 write64(buf + 52, gotPltOffset); in writePltHeader()
1327 write64(loc, val); in relocate()
1345 write64(loc, val - dynamicThreadPointerOffset); in relocate()
H A DMips.cpp600 write64(loc, val); in relocate()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h103 inline void write64(uint8_t *loc, uint64_t value, bool isBig) { in write64() function