Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DSwapByteOrder.h69 inline unsigned char getSwappedBytes(unsigned char C) { return llvm::byteswap(C); } in getSwappedBytes() function
70 inline signed char getSwappedBytes( signed char C) { return llvm::byteswap(C); } in getSwappedBytes() function
71 inline char getSwappedBytes( char C) { return llvm::byteswap(C); } in getSwappedBytes() function
73 inline unsigned short getSwappedBytes(unsigned short C) { return llvm::byteswap(C); } in getSwappedBytes() function
74 inline signed short getSwappedBytes( signed short C) { return llvm::byteswap(C); } in getSwappedBytes() function
76 inline unsigned int getSwappedBytes(unsigned int C) { return llvm::byteswap(C); } in getSwappedBytes() function
77 inline signed int getSwappedBytes( signed int C) { return llvm::byteswap(C); } in getSwappedBytes() function
79 inline unsigned long getSwappedBytes(unsigned long C) { return llvm::byteswap(C); } in getSwappedBytes() function
80 inline signed long getSwappedBytes( signed long C) { return llvm::byteswap(C); } in getSwappedBytes() function
82 inline unsigned long long getSwappedBytes(unsigned long long C) { return llvm::byteswap(C); } in getSwappedBytes() function
[all …]
DDataExtractor.h37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() function
/openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/
DInstrProfCorrelator.h151 return Ctx->ShouldSwapBytes ? sys::getSwappedBytes(Value) : Value;
DInstrProfReader.h371 return ShouldSwapBytes ? sys::getSwappedBytes(Int) : Int; in swap()
/openbsd/src/gnu/llvm/clang/lib/Lex/
DHeaderMap.cpp92 ? llvm::sys::getSwappedBytes(Header->NumBuckets) in checkHeader()
/openbsd/src/gnu/llvm/llvm/lib/Support/
DSHA1.cpp273 HashResult[i] = sys::getSwappedBytes(InternalState.State[i]); in final()
DSHA256.cpp253 HashResult[i] = sys::getSwappedBytes(InternalState.State[i]); in final()
/openbsd/src/gnu/llvm/llvm/lib/ProfileData/
DInstrProfReader.cpp413 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()