Searched defs:getSwappedBytes (Results 1 – 3 of 3) sorted by relevance
72 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function73 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function74 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function76 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function77 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function79 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function80 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function83 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function84 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function86 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes() function[all …]
98 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() function99 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() function100 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() function102 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function103 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes() function105 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function106 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes() function109 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function110 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes() function112 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes() function[all …]
37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() function