1 | /* $Id: avlohcphys.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - AVL tree, RTHCPHYS, unique keys, offset pointers.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2001-2004 knut st. osmundsen (bird-src-spam@anduin.net)
|
---|
8 | * Copyright (C) 2006-2007 innotek 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) RTAvloHCPhys##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 AVLOHCPHYSNODECORE
|
---|
37 | #define PKAVLNODECORE PAVLOHCPHYSNODECORE
|
---|
38 | #define PPKAVLNODECORE PPAVLOHCPHYSNODECORE
|
---|
39 | #define KAVLKEY RTHCPHYS
|
---|
40 | #define PKAVLKEY PRTHCPHYS
|
---|
41 | #define KAVLENUMDATA AVLOHCPHYSENUMDATA
|
---|
42 | #define PKAVLENUMDATA PAVLOHCPHYSENUMDATA
|
---|
43 | #define PKAVLCALLBACK PAVLOHCPHYSCALLBACK
|
---|
44 | #define KAVL_OFFSET 1
|
---|
45 |
|
---|
46 |
|
---|
47 | /*
|
---|
48 | * AVL Compare macros
|
---|
49 | */
|
---|
50 | #define KAVL_G( key1, key2) ( (key1) > (key2) )
|
---|
51 | #define KAVL_E( key1, key2) ( (key1) == (key2) )
|
---|
52 | #define KAVL_NE(key1, key2) ( (key1) != (key2) )
|
---|
53 |
|
---|
54 |
|
---|
55 | /*******************************************************************************
|
---|
56 | * Header Files *
|
---|
57 | *******************************************************************************/
|
---|
58 | #include <iprt/avl.h>
|
---|
59 | #include <iprt/assert.h>
|
---|
60 |
|
---|
61 | /*
|
---|
62 | * Include the code.
|
---|
63 | */
|
---|
64 | #define SSToDS(ptr) ptr
|
---|
65 | #define KMAX RT_MAX
|
---|
66 | #define kASSERT Assert
|
---|
67 | #include "avl_Base.cpp.h"
|
---|
68 | #include "avl_Get.cpp.h"
|
---|
69 | #include "avl_DoWithAll.cpp.h"
|
---|
70 | #include "avl_GetBestFit.cpp.h"
|
---|
71 | #include "avl_RemoveBestFit.cpp.h"
|
---|
72 | #include "avl_Destroy.cpp.h"
|
---|
73 |
|
---|