Home
last modified time | relevance | path

Searched refs:Endianness (Results 1 – 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackReader.cpp76 Obj.Float = BitsToFloat(endian::read<uint32_t, Endianness>(Current)); in read()
85 Obj.Float = BitsToDouble(endian::read<uint64_t, Endianness>(Current)); in read()
186 T Size = endian::read<T, Endianness>(Current); in readRaw()
196 Obj.Int = static_cast<int64_t>(endian::read<T, Endianness>(Current)); in readInt()
206 Obj.UInt = static_cast<uint64_t>(endian::read<T, Endianness>(Current)); in readUInt()
216 Obj.Length = static_cast<size_t>(endian::read<T, Endianness>(Current)); in readLength()
226 T Size = endian::read<T, Endianness>(Current); in readExt()
DMsgPackWriter.cpp21 : EW(OS, Endianness), Compatible(Compatible) {} in Writer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProfReader.h342 void setValueProfDataEndianness(support::endianness Endianness) { in setValueProfDataEndianness() argument
343 ValueProfDataEndianness = Endianness; in setValueProfDataEndianness()
359 virtual void setValueProfDataEndianness(support::endianness Endianness) = 0;
397 void setValueProfDataEndianness(support::endianness Endianness) override { in setValueProfDataEndianness() argument
398 HashTable->getInfoObj().setValueProfDataEndianness(Endianness); in setValueProfDataEndianness()
502 void setValueProfDataEndianness(support::endianness Endianness) { in setValueProfDataEndianness() argument
503 Index->setValueProfDataEndianness(Endianness); in setValueProfDataEndianness()
DInstrProfWriter.h101 void setValueProfDataEndianness(support::endianness Endianness);
DInstrProfData.inc385 * Swap byte order from \c Endianness order to host byte order.
387 void swapBytesToHost(support::endianness Endianness);
389 * Swap byte order from host byte order to \c Endianness order.
391 void swapBytesFromHost(support::endianness Endianness);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldCheckerImpl.h31 GetGOTInfoFunction GetGOTInfo, support::endianness Endianness,
67 support::endianness Endianness; variable
DRuntimeDyldChecker.cpp680 GetGOTInfoFunction GetGOTInfo, support::endianness Endianness, in RuntimeDyldCheckerImpl() argument
687 Endianness(Endianness), Disassembler(Disassembler), in RuntimeDyldCheckerImpl()
769 return support::endian::read<uint8_t>(Ptr, Endianness); in readMemoryAtAddr()
771 return support::endian::read<uint16_t>(Ptr, Endianness); in readMemoryAtAddr()
773 return support::endian::read<uint32_t>(Ptr, Endianness); in readMemoryAtAddr()
775 return support::endian::read<uint64_t>(Ptr, Endianness); in readMemoryAtAddr()
851 GetGOTInfoFunction GetGOTInfo, support::endianness Endianness, in RuntimeDyldChecker() argument
857 std::move(GetGOTInfo), Endianness, Disassembler, InstPrinter, in RuntimeDyldChecker()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProf.cpp876 support::endianness Endianness) { in getValueProfData() argument
883 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); in getValueProfData()
890 VPD->swapBytesToHost(Endianness); in getValueProfData()
899 void ValueProfData::swapBytesToHost(support::endianness Endianness) { in swapBytesToHost() argument
902 if (Endianness == getHostEndianness()) in swapBytesToHost()
910 VR->swapBytes(Endianness, getHostEndianness()); in swapBytesToHost()
915 void ValueProfData::swapBytesFromHost(support::endianness Endianness) { in swapBytesFromHost() argument
918 if (Endianness == getHostEndianness()) in swapBytesFromHost()
924 VR->swapBytes(getHostEndianness(), Endianness); in swapBytesFromHost()
DInstrProfWriter.cpp175 support::endianness Endianness) { in setValueProfDataEndianness() argument
176 InfoObj->ValueProfDataEndianness = Endianness; in setValueProfDataEndianness()
/third_party/abseil-cpp/absl/base/
Dconfig_test.cc24 TEST(ConfigTest, Endianness) { in TEST() argument
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Dconfig_test.cc24 TEST(ConfigTest, Endianness) { in TEST() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMsgPack.h24 constexpr support::endianness Endianness = support::big; variable
/third_party/boost/libs/endian/
DREADME.md4 [endianness](https://en.wikipedia.org/wiki/Endianness).
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DStackMapParser.h23 template <support::endianness Endianness>
420 return support::endian::read<T, Endianness, 1>(P); in read()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRuntimeDyldChecker.h150 support::endianness Endianness,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h781 support::endianness Endianness) in LinkGraph() argument
783 Endianness(Endianness) {} in LinkGraph()
793 support::endianness getEndianness() const { return Endianness; } in getEndianness()
1013 support::endianness Endianness; variable
/third_party/mesa3d/docs/relnotes/
D7.6.1.rst54 - Endianness fixes for the DRI swrast driver (bug 22767).
/third_party/boost/libs/spirit/doc/qi/
Dbinary.qbk23 [section:binary_native Binary Native Endianness Parsers]
132 [section:binary_little Binary Little Endianness Parser]
233 [section:binary_big Binary Big Endianness Parsers]
/third_party/boost/libs/endian/doc/endian/
Dchoosing_approach.adoc44 ### Endianness invariants
145 *Endianness conversion functions* only support 1, 2, 4, and 8 byte integers.
154 *Endianness conversion functions* only support aligned integer and
Dconversion.adoc26 *Endianness* refers to the ordering of bytes within internal or external
36 extensive description of https://en.wikipedia.org/wiki/Endianness[Endianness].
Doverview.adoc69 See Wikipedia's http://en.wikipedia.org/wiki/Endianness[Endianness] article for
/third_party/boost/libs/spirit/doc/karma/
Dbinary.qbk24 [section:binary_native Binary Native Endianness Generators]
203 [section:binary_little Binary Little Endianness Generators]
356 [section:binary_big Binary Big Endianness Generators]
/third_party/node/src/
Dutil.h696 enum Endianness {
701 inline enum Endianness GetEndianness() {
/third_party/boost/libs/spirit/doc/x3/
Dspirit_x3.qbk41 [def __endianness__ [@http://en.wikipedia.org/wiki/Endianness endianness]]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86Schedule.td150 def WriteBSWAP32 : SchedWrite; // Byte Order (Endianness) 32-bit Swap.
151 def WriteBSWAP64 : SchedWrite; // Byte Order (Endianness) 64-bit Swap.

12