- Timestamp:
- Jan 30, 2007 11:03:57 PM (18 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile
r405 r449 128 128 table/avloioport.cpp \ 129 129 table/avlpv.cpp \ 130 table/avlrgcptr.cpp \ 130 131 table/avlrogcphys.cpp \ 131 132 table/avlrogcptr.cpp \ -
trunk/src/VBox/Runtime/table/avlrgcptr.cpp
r411 r449 1 1 /* $Id$ */ 2 2 /** @file 3 * InnoTek Portable Runtime - AVL tree, RTGCPTR, range, unique keys , offset pointers.3 * InnoTek Portable Runtime - AVL tree, RTGCPTR, range, unique keys. 4 4 */ 5 5 … … 31 31 * AVL configuration. 32 32 */ 33 #define KAVL_FN(a) RTAvlr oGCPtr##a33 #define KAVL_FN(a) RTAvlrGCPtr##a 34 34 #define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */ 35 35 #define KAVL_CHECK_FOR_EQUAL_INSERT 1 /* No duplicate keys! */ 36 #define KAVLNODECORE AVLR OGCPTRNODECORE37 #define PKAVLNODECORE PAVLR OGCPTRNODECORE38 #define PPKAVLNODECORE PPAVLR OGCPTRNODECORE36 #define KAVLNODECORE AVLRGCPTRNODECORE 37 #define PKAVLNODECORE PAVLRGCPTRNODECORE 38 #define PPKAVLNODECORE PPAVLRGCPTRNODECORE 39 39 #define KAVLKEY RTGCPTR 40 40 #define PKAVLKEY PRTGCPTR 41 #define KAVLENUMDATA AVLROGCPTRENUMDATA 42 #define PKAVLENUMDATA PAVLROGCPTRENUMDATA 43 #define PKAVLCALLBACK PAVLROGCPTRCALLBACK 44 #define KAVL_OFFSET 1 41 #define KAVLENUMDATA AVLRGCPTRENUMDATA 42 #define PKAVLENUMDATA PAVLRGCPTRENUMDATA 43 #define PKAVLCALLBACK PAVLRGCPTRCALLBACK 45 44 #define KAVL_RANGE 1 46 45
Note:
See TracChangeset
for help on using the changeset viewer.