Home
last modified time | relevance | path

Searched refs:getSwappedBytes (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSwapByteOrder.h103 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function
104 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function
105 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function
107 inline unsigned short getSwappedBytes(unsigned short C) { return ByteSwap_16(C); } in getSwappedBytes() function
108 inline signed short getSwappedBytes( signed short C) { return ByteSwap_16(C); } in getSwappedBytes() function
110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes() function
111 inline signed int getSwappedBytes( signed int C) { return ByteSwap_32(C); } in getSwappedBytes() function
113 inline unsigned long getSwappedBytes(unsigned long C) { in getSwappedBytes() function
118 inline signed long getSwappedBytes(signed long C) { in getSwappedBytes() function
124 inline unsigned long long getSwappedBytes(unsigned long long C) { in getSwappedBytes() function
[all …]
H A DDataExtractor.h37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DHeaderMap.cpp91 ? llvm::sys::getSwappedBytes(Header->NumBuckets) in checkHeader()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h258 return ShouldSwapBytes ? sys::getSwappedBytes(Int) : Int; in swap()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfReader.cpp308 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()