Searched refs:getSwappedBytes (Results 1 – 7 of 7) sorted by relevance
38 EXPECT_EQ(original_uint8, getSwappedBytes(getSwappedBytes(original_uint8))); in TEST()42 getSwappedBytes(getSwappedBytes(original_uint16))); in TEST()46 getSwappedBytes(getSwappedBytes(original_uint32))); in TEST()50 getSwappedBytes(getSwappedBytes(original_uint64))); in TEST()62 EXPECT_EQ(original_int8, getSwappedBytes(getSwappedBytes(original_int8))); in TEST()65 EXPECT_EQ(original_int16, getSwappedBytes(getSwappedBytes(original_int16))); in TEST()68 EXPECT_EQ(original_int32, getSwappedBytes(getSwappedBytes(original_int32))); in TEST()71 EXPECT_EQ(original_int64, getSwappedBytes(getSwappedBytes(original_int64))); in TEST()77 EXPECT_EQ(original_int8, getSwappedBytes(getSwappedBytes(original_int8))); in TEST()80 EXPECT_EQ(original_int16, getSwappedBytes(getSwappedBytes(original_int16))); in TEST()[all …]
31 inline unsigned char getSwappedBytes(unsigned char C) { return llvm::byteswap(C); } in getSwappedBytes() function32 inline signed char getSwappedBytes( signed char C) { return llvm::byteswap(C); } in getSwappedBytes() function33 inline char getSwappedBytes( char C) { return llvm::byteswap(C); } in getSwappedBytes() function35 inline unsigned short getSwappedBytes(unsigned short C) { return llvm::byteswap(C); } in getSwappedBytes() function36 inline signed short getSwappedBytes( signed short C) { return llvm::byteswap(C); } in getSwappedBytes() function38 inline unsigned int getSwappedBytes(unsigned int C) { return llvm::byteswap(C); } in getSwappedBytes() function39 inline signed int getSwappedBytes( signed int C) { return llvm::byteswap(C); } in getSwappedBytes() function41 inline unsigned long getSwappedBytes(unsigned long C) { return llvm::byteswap(C); } in getSwappedBytes() function42 inline signed long getSwappedBytes( signed long C) { return llvm::byteswap(C); } in getSwappedBytes() function44 inline unsigned long long getSwappedBytes(unsigned long long C) { return llvm::byteswap(C); } in getSwappedBytes() function[all …]
37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() function
101 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function102 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function103 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function105 inline unsigned short getSwappedBytes(unsigned short C) { in getSwappedBytes() function108 inline signed short getSwappedBytes(signed short C) { return ByteSwap_16(C); } in getSwappedBytes() function110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes() function111 inline signed int getSwappedBytes(signed int C) { return ByteSwap_32(C); } in getSwappedBytes() function113 inline unsigned long getSwappedBytes(unsigned long C) { in getSwappedBytes() function118 inline signed long getSwappedBytes(signed long C) { in getSwappedBytes() function124 inline unsigned long long getSwappedBytes(unsigned long long C) { in getSwappedBytes() function[all …]
19 Floating getSwappedBytes(Floating F) { return F; } in getSwappedBytes() function
213 Floating getSwappedBytes(Floating F);
321 IntegralAP<Signed> getSwappedBytes(IntegralAP<Signed> F) { in getSwappedBytes() function