ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Macros
Byteswap.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define R__bswap_constant_16(x)   ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))
 
#define R__bswap_16(x)   R__bswap_constant_16 (x)
 
#define R__bswap_constant_32(x)
 
#define R__bswap_32(x)   R__bswap_constant_32 (x)
 
#define Rbswap_16(x)   R__bswap_16 (x)
 
#define Rbswap_32(x)   R__bswap_32 (x)
 

Macro Definition Documentation

#define R__bswap_16 (   x)    R__bswap_constant_16 (x)

Definition at line 61 of file Byteswap.h.

#define R__bswap_32 (   x)    R__bswap_constant_32 (x)

Definition at line 101 of file Byteswap.h.

#define R__bswap_constant_16 (   x)    ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))

Definition at line 44 of file Byteswap.h.

#define R__bswap_constant_32 (   x)
Value:
((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
(((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
Double_t x[n]
Definition: legend1.C:17

Definition at line 66 of file Byteswap.h.

#define Rbswap_16 (   x)    R__bswap_16 (x)

Definition at line 122 of file Byteswap.h.

Referenced by frombuf(), and tobuf().

#define Rbswap_32 (   x)    R__bswap_32 (x)

Definition at line 125 of file Byteswap.h.

Referenced by frombuf(), and tobuf().