#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <cassert>
#include "TLstEvent.h"
Go to the source code of this file.
◆ DWORD_SWAP
Value: { \
*(((
BYTE*)(x)) + 3) = _tmp; \
_tmp = *(((
BYTE*)(x)) + 1); \
*(((
BYTE*)(x)) + 1) = *(((
BYTE*)(x)) + 2); \
*(((
BYTE*)(x)) + 2) = _tmp; \
}
Byte swapping routine.
Definition at line 114 of file TLstEvent.cxx.
◆ QWORD_SWAP
Value: { \
*(((
BYTE*)(x)) + 7) = _tmp; \
_tmp = *(((
BYTE*)(x)) + 1); \
*(((
BYTE*)(x)) + 1) = *(((
BYTE*)(x)) + 6); \
*(((
BYTE*)(x)) + 6) = _tmp; \
_tmp = *(((
BYTE*)(x)) + 2); \
*(((
BYTE*)(x)) + 2) = *(((
BYTE*)(x)) + 5); \
*(((
BYTE*)(x)) + 5) = _tmp; \
_tmp = *(((
BYTE*)(x)) + 3); \
*(((
BYTE*)(x)) + 3) = *(((
BYTE*)(x)) + 4); \
*(((
BYTE*)(x)) + 4) = _tmp; \
}
Byte swapping routine.
Definition at line 95 of file TLstEvent.cxx.
◆ WORD_SWAP
Value: { \
*(((
BYTE*)(x)) + 1) = _tmp; \
}
Byte swapping routine.
Definition at line 127 of file TLstEvent.cxx.