Home
last modified time | relevance | path

Searched refs:read64le (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dxxhash.cpp118 V1 = round(V1, endian::read64le(P)); in xxHash64()
120 V2 = round(V2, endian::read64le(P)); in xxHash64()
122 V3 = round(V3, endian::read64le(P)); in xxHash64()
124 V4 = round(V4, endian::read64le(P)); in xxHash64()
142 uint64_t const K1 = round(0, endian::read64le(P)); in xxHash64()
244 (endian::read64le(secret + 8) ^ endian::read64le(secret + 16)) - seed; in XXH3_len_4to8_64b()
258 (endian::read64le(secret + 24) ^ endian::read64le(secret + 32)) + seed; in XXH3_len_9to16_64b()
260 (endian::read64le(secret + 40) ^ endian::read64le(secret + 48)) - seed; in XXH3_len_9to16_64b()
261 input_lo ^= endian::read64le(input); in XXH3_len_9to16_64b()
262 input_hi ^= endian::read64le(input + len - 8); in XXH3_len_9to16_64b()
[all …]
H A DSipHash.cpp74 uint64_t k0 = endian::read64le(kk); in siphash()
75 uint64_t k1 = endian::read64le(kk + 8); in siphash()
90 m = endian::read64le(ni); in siphash()
174 uint64_t RawHash = endian::read64le(RawHashBytes); in getPointerAuthStableSipHash()
/freebsd/contrib/llvm-project/lld/MachO/
H A DEhFrame.cpp31 len = read64le(data.data() + *off); in readLength()
66 v = read64le(data.data() + *off); in readPointer()
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DLoongArch.cpp294 return read64le(buf); in getImplicitAddend()
297 return config->is64 ? read64le(buf) : read32le(buf); in getImplicitAddend()
305 return read64le(buf + 8); in getImplicitAddend()
699 write64le(loc, read64le(loc) + val); in relocate()
717 write64le(loc, read64le(loc) - val); in relocate()
H A DRISCV.cpp188 return read64le(buf); in getImplicitAddend()
191 return config->is64 ? read64le(buf) : read32le(buf); in getImplicitAddend()
197 return config->is64 ? read64le(buf + 8) : read32le(buf + 4); in getImplicitAddend()
491 write64le(loc, read64le(loc) + val); in relocate()
506 write64le(loc, read64le(loc) - val); in relocate()
739 const uint64_t insnPair = read64le(sec.content().data() + r.offset); in relaxCall()
H A DX86_64.cpp749 return read64le(buf); in getImplicitAddend()
751 return read64le(buf + 8); in getImplicitAddend()
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64Common.cpp35 return read64le(loc); in getEmbeddedAddend()
H A DX86_64.cpp90 return read64le(loc) + pcrelOffset(rel.r_type); in getEmbeddedAddend()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchive.cpp1049 Offset = read64le(Offsets + SymbolIndex * 16 + 8); in getMember()
1169 ranlib_count = read64le(buf) / 16; in symbol_begin()
1172 ran_strx = read64le(ranlibs); in symbol_begin()
1251 return read64le(buf) / 16; in getNumberOfSymbols()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFAArch64.h231 Addend = read64le(Displacement); in processRelocationRef()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp357 support::endian::read64le(FixupPtr) + E.getAddend()) in applyFixup()
381 int64_t Value = support::endian::read64le(FixupPtr) - in applyFixup()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h428 [[nodiscard]] inline uint64_t read64le(const void *P) { in read64le() function
/freebsd/contrib/llvm-project/lld/COFF/
H A DChunks.cpp70 static void add64(uint8_t *p, int64_t v) { write64le(p, read64le(p) + v); } in add64()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DOffloadBundler.cpp295 return llvm::support::endian::read64le(Buffer.data() + pos); in Read8byteIntegerFromBuffer()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp560 uint64_t Hash = support::endian::read64le(MD5SampleContextStart + Idx); in readSampleContextFromTable()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1349 os << support::endian::read64le(&buffer[pos]); in printWords()