reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Object/Archive.cpp
  826     Offset = read64le(Offsets + SymbolIndex * 16 + 8);
  934     ranlib_count = read64le(buf) / 16;
  937     ran_strx = read64le(ranlibs);
  969     return read64le(buf) / 16;
lib/Support/xxhash.cpp
   86       V1 = round(V1, endian::read64le(P));
   88       V2 = round(V2, endian::read64le(P));
   90       V3 = round(V3, endian::read64le(P));
   92       V4 = round(V4, endian::read64le(P));
  109     uint64_t const K1 = round(0, endian::read64le(P));
tools/lld/COFF/Chunks.cpp
   62 static void add64(uint8_t *p, int64_t v) { write64le(p, read64le(p) + v); }
tools/lld/ELF/Arch/RISCV.cpp
  381     write64le(loc, read64le(loc) + val);
  396     write64le(loc, read64le(loc) - val);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
   86   return isBig ? read64be(loc) : read64le(loc);