|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Support/Endian.h 52 if ((endian != native) && (endian != system_endianness()))
328 detail::packed_endian_specific_integral<uint16_t, native, unaligned>;
330 detail::packed_endian_specific_integral<uint32_t, native, unaligned>;
332 detail::packed_endian_specific_integral<uint64_t, native, unaligned>;
335 detail::packed_endian_specific_integral<int16_t, native, unaligned>;
337 detail::packed_endian_specific_integral<int32_t, native, unaligned>;
339 detail::packed_endian_specific_integral<int64_t, native, unaligned>;
lib/Support/CodeGenCoverage.cpp 67 uint64_t RuleID = support::endian::read64(CurPtr, support::native);
lib/XRay/FDRTraceWriter.cpp 62 : OS(O, support::endianness::native) {
tools/clang/lib/AST/Interp/ByteCodeEmitter.cpp 98 endian::write<int32_t, endianness::native, 1>(Location, Offset);
tools/clang/lib/AST/Interp/Source.h 62 return endian::read<T, endianness::native, 1>(Ptr);
69 auto Punned = endian::read<uintptr_t, endianness::native, 1>(Ptr);
unittests/Support/BinaryStreamTest.cpp 105 constexpr endianness Endians[] = {big, little, native};