Searched refs:read64le (Results 1 – 16 of 16) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | xxhash.cpp | 118 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 D | SipHash.cpp | 74 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 D | EhFrame.cpp | 31 len = read64le(data.data() + *off); in readLength() 66 v = read64le(data.data() + *off); in readPointer()
|
/freebsd/contrib/llvm-project/lld/ELF/Arch/ |
H A D | LoongArch.cpp | 294 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 D | RISCV.cpp | 188 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 D | X86_64.cpp | 749 return read64le(buf); in getImplicitAddend() 751 return read64le(buf + 8); in getImplicitAddend()
|
/freebsd/contrib/llvm-project/lld/MachO/Arch/ |
H A D | ARM64Common.cpp | 35 return read64le(loc); in getEmbeddedAddend()
|
H A D | X86_64.cpp | 90 return read64le(loc) + pcrelOffset(rel.r_type); in getEmbeddedAddend()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Archive.cpp | 1049 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 D | RuntimeDyldCOFFAArch64.h | 231 Addend = read64le(Displacement); in processRelocationRef()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELF_riscv.cpp | 357 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 D | Endian.h | 428 [[nodiscard]] inline uint64_t read64le(const void *P) { in read64le() function
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Chunks.cpp | 70 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 D | OffloadBundler.cpp | 295 return llvm::support::endian::read64le(Buffer.data() + pos); in Read8byteIntegerFromBuffer()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProfReader.cpp | 560 uint64_t Hash = support::endian::read64le(MD5SampleContextStart + Idx); in readSampleContextFromTable()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1349 os << support::endian::read64le(&buffer[pos]); in printWords()
|