Searched defs:getSwappedBytes (Results 1 – 1 of 1) sorted by relevance
70 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function71 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function72 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function74 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function75 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function77 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function78 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function81 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function82 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function84 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes() function[all …]