1 | /* $Id: avlroioport.cpp 1 1970-01-01 00:00:00Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * InnoTek Portable Runtime - AVL tree, RTIOPORT, range, unique keys, offset pointers.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2001-2004 knut st. osmundsen (bird-src-spam@anduin.net)
|
---|
8 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License as published by the Free Software Foundation,
|
---|
14 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
15 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
16 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * If you received this file as part of a commercial VirtualBox
|
---|
19 | * distribution, then only the terms of your commercial VirtualBox
|
---|
20 | * license agreement apply instead of the previous paragraph.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef NOFILEID
|
---|
24 | static const char szFileId[] = "Id: kAVLULInt.c,v 1.4 2003/02/13 02:02:38 bird Exp $";
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | /*******************************************************************************
|
---|
28 | * Defined Constants And Macros *
|
---|
29 | *******************************************************************************/
|
---|
30 | /*
|
---|
31 | * AVL configuration.
|
---|
32 | */
|
---|
33 | #define KAVL_FN(a) RTAvlroIOPort##a
|
---|
34 | #define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */
|
---|
35 | #define KAVL_CHECK_FOR_EQUAL_INSERT 1 /* No duplicate keys! */
|
---|
36 | #define KAVLNODECORE AVLROIOPORTNODECORE
|
---|
37 | #define PKAVLNODECORE PAVLROIOPORTNODECORE
|
---|
38 | #define PPKAVLNODECORE PPAVLROIOPORTNODECORE
|
---|
39 | #define KAVLKEY RTIOPORT
|
---|
40 | #define PKAVLKEY PRTIOPORT
|
---|
41 | #define KAVLENUMDATA AVLROIOPORTENUMDATA
|
---|
42 | #define PKAVLENUMDATA PAVLROIOPORTENUMDATA
|
---|
43 | #define PKAVLCALLBACK PAVLROIOPORTCALLBACK
|
---|
44 | #define KAVL_OFFSET 1
|
---|
45 | #define KAVL_RANGE 1
|
---|
46 |
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * AVL Compare macros
|
---|
50 | */
|
---|
51 | #define KAVL_G( key1, key2) ( (key1) > (key2) )
|
---|
52 | #define KAVL_E( key1, key2) ( (key1) == (key2) )
|
---|
53 | #define KAVL_NE(key1, key2) ( (key1) != (key2) )
|
---|
54 | #define KAVL_R_IS_IDENTICAL( key1B, key2B, key1E, key2E) ( (key1B) == (key2B) && (key1E) == (key2E) )
|
---|
55 | #define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E) ( (key1B) <= (key2E) && (key1E) >= (key2B) )
|
---|
56 | #define KAVL_R_IS_IN_RANGE( key1B, key1E, key2) KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
|
---|
57 |
|
---|
58 |
|
---|
59 |
|
---|
60 | /*******************************************************************************
|
---|
61 | * Header Files *
|
---|
62 | *******************************************************************************/
|
---|
63 | #include <iprt/avl.h>
|
---|
64 | #include <iprt/assert.h>
|
---|
65 |
|
---|
66 | /*
|
---|
67 | * Include the code.
|
---|
68 | */
|
---|
69 | #define SSToDS(ptr) ptr
|
---|
70 | #define KMAX RT_MAX
|
---|
71 | #define kASSERT Assert
|
---|
72 | #include "avl_Base.cpp.h"
|
---|
73 | #include "avl_Get.cpp.h"
|
---|
74 | #include "avl_Range.cpp.h"
|
---|
75 | #include "avl_DoWithAll.cpp.h"
|
---|
76 | #include "avl_Destroy.cpp.h"
|
---|
77 |
|
---|