Searched defs:getSwappedBytes (Results 1 – 2 of 2) sorted by relevance
103 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function104 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function105 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function107 inline unsigned short getSwappedBytes(unsigned short C) { return ByteSwap_16(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 …]
37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() function