#include "Stdafx.h"
Go to the source code of this file.
Macros | |
#define | CHECK_PASS_VALIDITY(pass) |
#define | CHECK_RESIZE(n) |
#define | CREATE_HISTOGRAMS(type, buffer) |
#define | CURRENT_SIZE (mCurrentSize&0x7fffffff) |
#define | INVALID_RANKS (mCurrentSize&0x80000000) |
#define | INVALIDATE_RANKS mCurrentSize|=0x80000000 |
#define | VALIDATE_RANKS mCurrentSize&=0x7fffffff |
Contains source code from the article "Radix Sort Revisited".
Definition in file IceRevisitedRadix.cpp.
#define CHECK_PASS_VALIDITY | ( | pass | ) |
Definition at line 144 of file IceRevisitedRadix.cpp.
#define CHECK_RESIZE | ( | n | ) |
Definition at line 61 of file IceRevisitedRadix.cpp.
Definition at line 69 of file IceRevisitedRadix.cpp.
#define CURRENT_SIZE (mCurrentSize&0x7fffffff) |
Definition at line 58 of file IceRevisitedRadix.cpp.
#define INVALID_RANKS (mCurrentSize&0x80000000) |
Definition at line 59 of file IceRevisitedRadix.cpp.
#define INVALIDATE_RANKS mCurrentSize|=0x80000000 |
Definition at line 56 of file IceRevisitedRadix.cpp.
#define VALIDATE_RANKS mCurrentSize&=0x7fffffff |
Definition at line 57 of file IceRevisitedRadix.cpp.