1 | /** @file
|
---|
2 | * innotek Portable Runtime - AVL Trees.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | * Copyright (C) 1999-2003 knut st. osmundsen <bird-src-spam@anduin.net>
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ___iprt_avl_h
|
---|
23 | #define ___iprt_avl_h
|
---|
24 |
|
---|
25 | #include <iprt/cdefs.h>
|
---|
26 | #include <iprt/types.h>
|
---|
27 |
|
---|
28 | __BEGIN_DECLS
|
---|
29 |
|
---|
30 | /** @defgroup grp_rt_avl RTAvl - AVL Trees
|
---|
31 | * @ingroup grp_rt
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 |
|
---|
35 |
|
---|
36 | /** AVL tree of void pointers.
|
---|
37 | * @{
|
---|
38 | */
|
---|
39 |
|
---|
40 | /**
|
---|
41 | * AVL key type
|
---|
42 | */
|
---|
43 | typedef void * AVLPVKEY;
|
---|
44 |
|
---|
45 | /**
|
---|
46 | * AVL Core node.
|
---|
47 | */
|
---|
48 | typedef struct _AVLPVNodeCore
|
---|
49 | {
|
---|
50 | AVLPVKEY Key; /** Key value. */
|
---|
51 | struct _AVLPVNodeCore *pLeft; /** Pointer to left leaf node. */
|
---|
52 | struct _AVLPVNodeCore *pRight; /** Pointer to right leaf node. */
|
---|
53 | unsigned char uchHeight; /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
54 | } AVLPVNODECORE, *PAVLPVNODECORE, **PPAVLPVNODECORE;
|
---|
55 |
|
---|
56 | /** A tree with void pointer keys. */
|
---|
57 | typedef PAVLPVNODECORE AVLPVTREE;
|
---|
58 | /** Pointer to a tree with void pointer keys. */
|
---|
59 | typedef PPAVLPVNODECORE PAVLPVTREE;
|
---|
60 |
|
---|
61 | /** Callback function for AVLPVDoWithAll(). */
|
---|
62 | typedef DECLCALLBACK(int) AVLPVCALLBACK(PAVLPVNODECORE, void *);
|
---|
63 | /** Pointer to callback function for AVLPVDoWithAll(). */
|
---|
64 | typedef AVLPVCALLBACK *PAVLPVCALLBACK;
|
---|
65 |
|
---|
66 | /*
|
---|
67 | * Functions.
|
---|
68 | */
|
---|
69 | RTDECL(bool) RTAvlPVInsert(PAVLPVTREE ppTree, PAVLPVNODECORE pNode);
|
---|
70 | RTDECL(PAVLPVNODECORE) RTAvlPVRemove(PAVLPVTREE ppTree, AVLPVKEY Key);
|
---|
71 | RTDECL(PAVLPVNODECORE) RTAvlPVGet(PAVLPVTREE ppTree, AVLPVKEY Key);
|
---|
72 | RTDECL(PAVLPVNODECORE) RTAvlPVGetBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
|
---|
73 | RTDECL(PAVLPVNODECORE) RTAvlPVRemoveBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
|
---|
74 | RTDECL(int) RTAvlPVDoWithAll(PAVLPVTREE ppTree, int fFromLeft, PAVLPVCALLBACK pfnCallBack, void *pvParam);
|
---|
75 | RTDECL(int) RTAvlPVDestroy(PAVLPVTREE ppTree, PAVLPVCALLBACK pfnCallBack, void *pvParam);
|
---|
76 |
|
---|
77 | /** @} */
|
---|
78 |
|
---|
79 |
|
---|
80 | /** AVL tree of unsigned long.
|
---|
81 | * @{
|
---|
82 | */
|
---|
83 |
|
---|
84 | /**
|
---|
85 | * AVL key type
|
---|
86 | */
|
---|
87 | typedef unsigned long AVLULKEY;
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * AVL Core node.
|
---|
91 | */
|
---|
92 | typedef struct _AVLULNodeCore
|
---|
93 | {
|
---|
94 | AVLULKEY Key; /** Key value. */
|
---|
95 | struct _AVLULNodeCore *pLeft; /** Pointer to left leaf node. */
|
---|
96 | struct _AVLULNodeCore *pRight; /** Pointer to right leaf node. */
|
---|
97 | unsigned char uchHeight; /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
98 | } AVLULNODECORE, *PAVLULNODECORE, **PPAVLULNODECORE;
|
---|
99 |
|
---|
100 |
|
---|
101 | /** Callback function for AVLULDoWithAll(). */
|
---|
102 | typedef DECLCALLBACK(int) AVLULCALLBACK(PAVLULNODECORE, void*);
|
---|
103 | /** Pointer to callback function for AVLULDoWithAll(). */
|
---|
104 | typedef AVLULCALLBACK *PAVLULCALLBACK;
|
---|
105 |
|
---|
106 |
|
---|
107 | /*
|
---|
108 | * Functions.
|
---|
109 | */
|
---|
110 | RTDECL(bool) RTAvlULInsert(PPAVLULNODECORE ppTree, PAVLULNODECORE pNode);
|
---|
111 | RTDECL(PAVLULNODECORE) RTAvlULRemove(PPAVLULNODECORE ppTree, AVLULKEY Key);
|
---|
112 | RTDECL(PAVLULNODECORE) RTAvlULGet(PPAVLULNODECORE ppTree, AVLULKEY Key);
|
---|
113 | RTDECL(PAVLULNODECORE) RTAvlULGetBestFit(PPAVLULNODECORE ppTree, AVLULKEY Key, bool fAbove);
|
---|
114 | RTDECL(PAVLULNODECORE) RTAvlULRemoveBestFit(PPAVLULNODECORE ppTree, AVLULKEY Key, bool fAbove);
|
---|
115 | RTDECL(int) RTAvlULDoWithAll(PPAVLULNODECORE ppTree, int fFromLeft, PAVLULCALLBACK pfnCallBack, void *pvParam);
|
---|
116 |
|
---|
117 | /** @} */
|
---|
118 |
|
---|
119 |
|
---|
120 |
|
---|
121 | /** AVL tree of uint32_t
|
---|
122 | * @{
|
---|
123 | */
|
---|
124 |
|
---|
125 | /** AVL key type. */
|
---|
126 | typedef uint32_t AVLU32KEY;
|
---|
127 |
|
---|
128 | /** AVL Core node. */
|
---|
129 | typedef struct _AVLU32NodeCore
|
---|
130 | {
|
---|
131 | AVLU32KEY Key; /**< Key value. */
|
---|
132 | struct _AVLU32NodeCore *pLeft; /**< Pointer to left leaf node. */
|
---|
133 | struct _AVLU32NodeCore *pRight; /**< Pointer to right leaf node. */
|
---|
134 | unsigned char uchHeight; /**< Height of this tree: max(height(left), height(right)) + 1 */
|
---|
135 | } AVLU32NODECORE, *PAVLU32NODECORE, **PPAVLU32NODECORE;
|
---|
136 |
|
---|
137 | /** Callback function for AVLU32DoWithAll() & AVLU32Destroy(). */
|
---|
138 | typedef DECLCALLBACK(int) AVLU32CALLBACK(PAVLU32NODECORE, void*);
|
---|
139 | /** Pointer to callback function for AVLU32DoWithAll() & AVLU32Destroy(). */
|
---|
140 | typedef AVLU32CALLBACK *PAVLU32CALLBACK;
|
---|
141 |
|
---|
142 |
|
---|
143 | /*
|
---|
144 | * Functions.
|
---|
145 | */
|
---|
146 | RTDECL(bool) RTAvlU32Insert(PPAVLU32NODECORE ppTree, PAVLU32NODECORE pNode);
|
---|
147 | RTDECL(PAVLU32NODECORE) RTAvlU32Remove(PPAVLU32NODECORE ppTree, AVLU32KEY Key);
|
---|
148 | RTDECL(PAVLU32NODECORE) RTAvlU32Get(PPAVLU32NODECORE ppTree, AVLU32KEY Key);
|
---|
149 | RTDECL(PAVLU32NODECORE) RTAvlU32GetBestFit(PPAVLU32NODECORE ppTree, AVLU32KEY Key, bool fAbove);
|
---|
150 | RTDECL(PAVLU32NODECORE) RTAvlU32RemoveBestFit(PPAVLU32NODECORE ppTree, AVLU32KEY Key, bool fAbove);
|
---|
151 | RTDECL(int) RTAvlU32DoWithAll(PPAVLU32NODECORE ppTree, int fFromLeft, PAVLU32CALLBACK pfnCallBack, void *pvParam);
|
---|
152 | RTDECL(int) RTAvlU32Destroy(PPAVLU32NODECORE pTree, PAVLU32CALLBACK pfnCallBack, void *pvParam);
|
---|
153 |
|
---|
154 | /** @} */
|
---|
155 |
|
---|
156 |
|
---|
157 |
|
---|
158 | /** AVL tree of RTGCPHYSes - using relative offsets internally.
|
---|
159 | * @{
|
---|
160 | */
|
---|
161 |
|
---|
162 | /**
|
---|
163 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
164 | */
|
---|
165 | typedef int32_t AVLOGCPHYS;
|
---|
166 |
|
---|
167 | /**
|
---|
168 | * AVL Core node.
|
---|
169 | */
|
---|
170 | typedef struct _AVLOGCPhysNodeCore
|
---|
171 | {
|
---|
172 | /** Key value. */
|
---|
173 | RTGCPHYS Key;
|
---|
174 | /** Offset to the left leaf node, relative to this field. */
|
---|
175 | AVLOGCPHYS pLeft;
|
---|
176 | /** Offset to the right leaf node, relative to this field. */
|
---|
177 | AVLOGCPHYS pRight;
|
---|
178 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
179 | unsigned char uchHeight;
|
---|
180 | } AVLOGCPHYSNODECORE, *PAVLOGCPHYSNODECORE;
|
---|
181 |
|
---|
182 | /** A offset base tree with uint32_t keys. */
|
---|
183 | typedef AVLOGCPHYS AVLOGCPHYSTREE;
|
---|
184 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
185 | typedef AVLOGCPHYSTREE *PAVLOGCPHYSTREE;
|
---|
186 |
|
---|
187 | /** Pointer to an internal tree pointer.
|
---|
188 | * In this case it's a pointer to a relative offset. */
|
---|
189 | typedef AVLOGCPHYSTREE *PPAVLOGCPHYSNODECORE;
|
---|
190 |
|
---|
191 | /** Callback function for RTAvloGCPhysDoWithAll() and RTAvloGCPhysDestroy(). */
|
---|
192 | typedef DECLCALLBACK(int) AVLOGCPHYSCALLBACK(PAVLOGCPHYSNODECORE pNode, void *pvUser);
|
---|
193 | /** Pointer to callback function for RTAvloGCPhysDoWithAll() and RTAvloGCPhysDestroy(). */
|
---|
194 | typedef AVLOGCPHYSCALLBACK *PAVLOGCPHYSCALLBACK;
|
---|
195 |
|
---|
196 | RTDECL(bool) RTAvloGCPhysInsert(PAVLOGCPHYSTREE pTree, PAVLOGCPHYSNODECORE pNode);
|
---|
197 | RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysRemove(PAVLOGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
198 | RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysGet(PAVLOGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
199 | RTDECL(int) RTAvloGCPhysDoWithAll(PAVLOGCPHYSTREE pTree, int fFromLeft, PAVLOGCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
200 | RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysGetBestFit(PAVLOGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
|
---|
201 | RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysRemoveBestFit(PAVLOGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
|
---|
202 | RTDECL(int) RTAvloGCPhysDestroy(PAVLOGCPHYSTREE pTree, PAVLOGCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
203 |
|
---|
204 | /** @} */
|
---|
205 |
|
---|
206 |
|
---|
207 | /** AVL tree of RTGCPHYS ranges - using relative offsets internally.
|
---|
208 | * @{
|
---|
209 | */
|
---|
210 |
|
---|
211 | /**
|
---|
212 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
213 | */
|
---|
214 | typedef int32_t AVLROGCPHYS;
|
---|
215 |
|
---|
216 | /**
|
---|
217 | * AVL Core node.
|
---|
218 | */
|
---|
219 | typedef struct _AVLROGCPhysNodeCore
|
---|
220 | {
|
---|
221 | /** First key value in the range (inclusive). */
|
---|
222 | RTGCPHYS Key;
|
---|
223 | /** Last key value in the range (inclusive). */
|
---|
224 | RTGCPHYS KeyLast;
|
---|
225 | /** Offset to the left leaf node, relative to this field. */
|
---|
226 | AVLROGCPHYS pLeft;
|
---|
227 | /** Offset to the right leaf node, relative to this field. */
|
---|
228 | AVLROGCPHYS pRight;
|
---|
229 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
230 | unsigned char uchHeight;
|
---|
231 | } AVLROGCPHYSNODECORE, *PAVLROGCPHYSNODECORE;
|
---|
232 |
|
---|
233 | /** A offset base tree with uint32_t keys. */
|
---|
234 | typedef AVLROGCPHYS AVLROGCPHYSTREE;
|
---|
235 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
236 | typedef AVLROGCPHYSTREE *PAVLROGCPHYSTREE;
|
---|
237 |
|
---|
238 | /** Pointer to an internal tree pointer.
|
---|
239 | * In this case it's a pointer to a relative offset. */
|
---|
240 | typedef AVLROGCPHYSTREE *PPAVLROGCPHYSNODECORE;
|
---|
241 |
|
---|
242 | /** Callback function for RTAvlroGCPhysDoWithAll() and RTAvlroGCPhysDestroy(). */
|
---|
243 | typedef DECLCALLBACK(int) AVLROGCPHYSCALLBACK(PAVLROGCPHYSNODECORE pNode, void *pvUser);
|
---|
244 | /** Pointer to callback function for RTAvlroGCPhysDoWithAll() and RTAvlroGCPhysDestroy(). */
|
---|
245 | typedef AVLROGCPHYSCALLBACK *PAVLROGCPHYSCALLBACK;
|
---|
246 |
|
---|
247 | RTDECL(bool) RTAvlroGCPhysInsert(PAVLROGCPHYSTREE pTree, PAVLROGCPHYSNODECORE pNode);
|
---|
248 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRemove(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
249 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGet(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
250 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRangeGet(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
251 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRangeRemove(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
|
---|
252 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetBestFit(PAVLROGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
|
---|
253 | RTDECL(int) RTAvlroGCPhysDoWithAll(PAVLROGCPHYSTREE pTree, int fFromLeft, PAVLROGCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
254 | RTDECL(int) RTAvlroGCPhysDestroy(PAVLROGCPHYSTREE pTree, PAVLROGCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
255 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetRoot(PAVLROGCPHYSTREE pTree);
|
---|
256 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetLeft(PAVLROGCPHYSNODECORE pNode);
|
---|
257 | RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetRight(PAVLROGCPHYSNODECORE pNode);
|
---|
258 |
|
---|
259 | /** @} */
|
---|
260 |
|
---|
261 |
|
---|
262 | /** AVL tree of RTGCPTRs.
|
---|
263 | * @{
|
---|
264 | */
|
---|
265 |
|
---|
266 | /**
|
---|
267 | * AVL Core node.
|
---|
268 | */
|
---|
269 | typedef struct _AVLGCPtrNodeCore
|
---|
270 | {
|
---|
271 | /** Key value. */
|
---|
272 | RTGCPTR Key;
|
---|
273 | /** Pointer to the left node. */
|
---|
274 | struct _AVLGCPtrNodeCore *pLeft;
|
---|
275 | /** Pointer to the right node. */
|
---|
276 | struct _AVLGCPtrNodeCore *pRight;
|
---|
277 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
278 | unsigned char uchHeight;
|
---|
279 | } AVLGCPTRNODECORE, *PAVLGCPTRNODECORE, **PPAVLGCPTRNODECORE;
|
---|
280 |
|
---|
281 | /** A tree of RTGCPTR keys. */
|
---|
282 | typedef PAVLGCPTRNODECORE AVLGCPTRTREE;
|
---|
283 | /** Pointer to a tree of RTGCPTR keys. */
|
---|
284 | typedef PPAVLGCPTRNODECORE PAVLGCPTRTREE;
|
---|
285 |
|
---|
286 | /** Callback function for RTAvlGCPtrDoWithAll(). */
|
---|
287 | typedef DECLCALLBACK(int) AVLGCPTRCALLBACK(PAVLGCPTRNODECORE pNode, void *pvUser);
|
---|
288 | /** Pointer to callback function for RTAvlGCPtrDoWithAll(). */
|
---|
289 | typedef AVLGCPTRCALLBACK *PAVLGCPTRCALLBACK;
|
---|
290 |
|
---|
291 | RTDECL(bool) RTAvlGCPtrInsert(PAVLGCPTRTREE pTree, PAVLGCPTRNODECORE pNode);
|
---|
292 | RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrRemove(PAVLGCPTRTREE pTree, RTGCPTR Key);
|
---|
293 | RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrGet(PAVLGCPTRTREE pTree, RTGCPTR Key);
|
---|
294 | RTDECL(int) RTAvlGCPtrDoWithAll(PAVLGCPTRTREE pTree, int fFromLeft, PAVLGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
295 | RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrGetBestFit(PAVLGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
296 | RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrRemoveBestFit(PAVLGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
297 | RTDECL(int) RTAvlGCPtrDestroy(PAVLGCPTRTREE pTree, PAVLGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
298 |
|
---|
299 | /** @} */
|
---|
300 |
|
---|
301 |
|
---|
302 | /** AVL tree of RTGCPTRs - using relative offsets internally.
|
---|
303 | * @{
|
---|
304 | */
|
---|
305 |
|
---|
306 | /**
|
---|
307 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
308 | */
|
---|
309 | typedef int32_t AVLOGCPTR;
|
---|
310 |
|
---|
311 | /**
|
---|
312 | * AVL Core node.
|
---|
313 | */
|
---|
314 | typedef struct _AVLOGCPtrNodeCore
|
---|
315 | {
|
---|
316 | /** Key value. */
|
---|
317 | RTGCPTR Key;
|
---|
318 | /** Offset to the left leaf node, relative to this field. */
|
---|
319 | AVLOGCPTR pLeft;
|
---|
320 | /** Offset to the right leaf node, relative to this field. */
|
---|
321 | AVLOGCPTR pRight;
|
---|
322 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
323 | unsigned char uchHeight;
|
---|
324 | } AVLOGCPTRNODECORE, *PAVLOGCPTRNODECORE;
|
---|
325 |
|
---|
326 | /** A offset base tree with uint32_t keys. */
|
---|
327 | typedef AVLOGCPTR AVLOGCPTRTREE;
|
---|
328 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
329 | typedef AVLOGCPTRTREE *PAVLOGCPTRTREE;
|
---|
330 |
|
---|
331 | /** Pointer to an internal tree pointer.
|
---|
332 | * In this case it's a pointer to a relative offset. */
|
---|
333 | typedef AVLOGCPTRTREE *PPAVLOGCPTRNODECORE;
|
---|
334 |
|
---|
335 | /** Callback function for RTAvloGCPtrDoWithAll(). */
|
---|
336 | typedef DECLCALLBACK(int) AVLOGCPTRCALLBACK(PAVLOGCPTRNODECORE pNode, void *pvUser);
|
---|
337 | /** Pointer to callback function for RTAvloGCPtrDoWithAll(). */
|
---|
338 | typedef AVLOGCPTRCALLBACK *PAVLOGCPTRCALLBACK;
|
---|
339 |
|
---|
340 | RTDECL(bool) RTAvloGCPtrInsert(PAVLOGCPTRTREE pTree, PAVLOGCPTRNODECORE pNode);
|
---|
341 | RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrRemove(PAVLOGCPTRTREE pTree, RTGCPTR Key);
|
---|
342 | RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrGet(PAVLOGCPTRTREE pTree, RTGCPTR Key);
|
---|
343 | RTDECL(int) RTAvloGCPtrDoWithAll(PAVLOGCPTRTREE pTree, int fFromLeft, PAVLOGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
344 | RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrGetBestFit(PAVLOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
345 | RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrRemoveBestFit(PAVLOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
346 | RTDECL(int) RTAvloGCPtrDestroy(PAVLOGCPTRTREE pTree, PAVLOGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
347 |
|
---|
348 | /** @} */
|
---|
349 |
|
---|
350 |
|
---|
351 | /** AVL tree of RTGCPTR ranges.
|
---|
352 | * @{
|
---|
353 | */
|
---|
354 |
|
---|
355 | /**
|
---|
356 | * AVL Core node.
|
---|
357 | */
|
---|
358 | typedef struct _AVLRGCPtrNodeCore
|
---|
359 | {
|
---|
360 | /** First key value in the range (inclusive). */
|
---|
361 | RTGCPTR Key;
|
---|
362 | /** Last key value in the range (inclusive). */
|
---|
363 | RTGCPTR KeyLast;
|
---|
364 | /** Offset to the left leaf node, relative to this field. */
|
---|
365 | struct _AVLRGCPtrNodeCore *pLeft;
|
---|
366 | /** Offset to the right leaf node, relative to this field. */
|
---|
367 | struct _AVLRGCPtrNodeCore *pRight;
|
---|
368 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
369 | unsigned char uchHeight;
|
---|
370 | } AVLRGCPTRNODECORE, *PAVLRGCPTRNODECORE;
|
---|
371 |
|
---|
372 | /** A offset base tree with RTGCPTR keys. */
|
---|
373 | typedef PAVLRGCPTRNODECORE AVLRGCPTRTREE;
|
---|
374 | /** Pointer to a offset base tree with RTGCPTR keys. */
|
---|
375 | typedef AVLRGCPTRTREE *PAVLRGCPTRTREE;
|
---|
376 |
|
---|
377 | /** Pointer to an internal tree pointer.
|
---|
378 | * In this case it's a pointer to a relative offset. */
|
---|
379 | typedef AVLRGCPTRTREE *PPAVLRGCPTRNODECORE;
|
---|
380 |
|
---|
381 | /** Callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy(). */
|
---|
382 | typedef DECLCALLBACK(int) AVLRGCPTRCALLBACK(PAVLRGCPTRNODECORE pNode, void *pvUser);
|
---|
383 | /** Pointer to callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy(). */
|
---|
384 | typedef AVLRGCPTRCALLBACK *PAVLRGCPTRCALLBACK;
|
---|
385 |
|
---|
386 | RTDECL(bool) RTAvlrGCPtrInsert( PAVLRGCPTRTREE pTree, PAVLRGCPTRNODECORE pNode);
|
---|
387 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRemove( PAVLRGCPTRTREE pTree, RTGCPTR Key);
|
---|
388 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGet( PAVLRGCPTRTREE pTree, RTGCPTR Key);
|
---|
389 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetBestFit( PAVLRGCPTRTREE pTree, RTGCPTR Key, bool fAbove);
|
---|
390 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRangeGet( PAVLRGCPTRTREE pTree, RTGCPTR Key);
|
---|
391 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRangeRemove( PAVLRGCPTRTREE pTree, RTGCPTR Key);
|
---|
392 | RTDECL(int) RTAvlrGCPtrDoWithAll( PAVLRGCPTRTREE pTree, int fFromLeft, PAVLRGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
393 | RTDECL(int) RTAvlrGCPtrDestroy( PAVLRGCPTRTREE pTree, PAVLRGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
394 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetRoot( PAVLRGCPTRTREE pTree);
|
---|
395 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetLeft( PAVLRGCPTRNODECORE pNode);
|
---|
396 | RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetRight( PAVLRGCPTRNODECORE pNode);
|
---|
397 |
|
---|
398 | /** @} */
|
---|
399 |
|
---|
400 |
|
---|
401 | /** AVL tree of RTGCPTR ranges - using relative offsets internally.
|
---|
402 | * @{
|
---|
403 | */
|
---|
404 |
|
---|
405 | /**
|
---|
406 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
407 | */
|
---|
408 | typedef int32_t AVLROGCPTR;
|
---|
409 |
|
---|
410 | /**
|
---|
411 | * AVL Core node.
|
---|
412 | */
|
---|
413 | typedef struct _AVLROGCPtrNodeCore
|
---|
414 | {
|
---|
415 | /** First key value in the range (inclusive). */
|
---|
416 | RTGCPTR Key;
|
---|
417 | /** Last key value in the range (inclusive). */
|
---|
418 | RTGCPTR KeyLast;
|
---|
419 | /** Offset to the left leaf node, relative to this field. */
|
---|
420 | AVLROGCPTR pLeft;
|
---|
421 | /** Offset to the right leaf node, relative to this field. */
|
---|
422 | AVLROGCPTR pRight;
|
---|
423 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
424 | unsigned char uchHeight;
|
---|
425 | } AVLROGCPTRNODECORE, *PAVLROGCPTRNODECORE;
|
---|
426 |
|
---|
427 | /** A offset base tree with uint32_t keys. */
|
---|
428 | typedef AVLROGCPTR AVLROGCPTRTREE;
|
---|
429 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
430 | typedef AVLROGCPTRTREE *PAVLROGCPTRTREE;
|
---|
431 |
|
---|
432 | /** Pointer to an internal tree pointer.
|
---|
433 | * In this case it's a pointer to a relative offset. */
|
---|
434 | typedef AVLROGCPTRTREE *PPAVLROGCPTRNODECORE;
|
---|
435 |
|
---|
436 | /** Callback function for RTAvlroGCPtrDoWithAll() and RTAvlroGCPtrDestroy(). */
|
---|
437 | typedef DECLCALLBACK(int) AVLROGCPTRCALLBACK(PAVLROGCPTRNODECORE pNode, void *pvUser);
|
---|
438 | /** Pointer to callback function for RTAvlroGCPtrDoWithAll() and RTAvlroGCPtrDestroy(). */
|
---|
439 | typedef AVLROGCPTRCALLBACK *PAVLROGCPTRCALLBACK;
|
---|
440 |
|
---|
441 | RTDECL(bool) RTAvlroGCPtrInsert(PAVLROGCPTRTREE pTree, PAVLROGCPTRNODECORE pNode);
|
---|
442 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRemove(PAVLROGCPTRTREE pTree, RTGCPTR Key);
|
---|
443 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGet(PAVLROGCPTRTREE pTree, RTGCPTR Key);
|
---|
444 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetBestFit(PAVLROGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
445 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRangeGet(PAVLROGCPTRTREE pTree, RTGCPTR Key);
|
---|
446 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRangeRemove(PAVLROGCPTRTREE pTree, RTGCPTR Key);
|
---|
447 | RTDECL(int) RTAvlroGCPtrDoWithAll(PAVLROGCPTRTREE pTree, int fFromLeft, PAVLROGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
448 | RTDECL(int) RTAvlroGCPtrDestroy(PAVLROGCPTRTREE pTree, PAVLROGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
449 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetRoot(PAVLROGCPTRTREE pTree);
|
---|
450 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetLeft(PAVLROGCPTRNODECORE pNode);
|
---|
451 | RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetRight(PAVLROGCPTRNODECORE pNode);
|
---|
452 |
|
---|
453 | /** @} */
|
---|
454 |
|
---|
455 |
|
---|
456 | /** AVL tree of RTGCPTR ranges (overlapping supported) - using relative offsets internally.
|
---|
457 | * @{
|
---|
458 | */
|
---|
459 |
|
---|
460 | /**
|
---|
461 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
462 | */
|
---|
463 | typedef int32_t AVLROOGCPTR;
|
---|
464 |
|
---|
465 | /**
|
---|
466 | * AVL Core node.
|
---|
467 | */
|
---|
468 | typedef struct _AVLROOGCPtrNodeCore
|
---|
469 | {
|
---|
470 | /** First key value in the range (inclusive). */
|
---|
471 | RTGCPTR Key;
|
---|
472 | /** Last key value in the range (inclusive). */
|
---|
473 | RTGCPTR KeyLast;
|
---|
474 | /** Offset to the left leaf node, relative to this field. */
|
---|
475 | AVLROOGCPTR pLeft;
|
---|
476 | /** Offset to the right leaf node, relative to this field. */
|
---|
477 | AVLROOGCPTR pRight;
|
---|
478 | /** Pointer to the list of string with the same key. Don't touch. */
|
---|
479 | AVLROOGCPTR pList;
|
---|
480 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
481 | unsigned char uchHeight;
|
---|
482 | } AVLROOGCPTRNODECORE, *PAVLROOGCPTRNODECORE;
|
---|
483 |
|
---|
484 | /** A offset base tree with uint32_t keys. */
|
---|
485 | typedef AVLROOGCPTR AVLROOGCPTRTREE;
|
---|
486 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
487 | typedef AVLROOGCPTRTREE *PAVLROOGCPTRTREE;
|
---|
488 |
|
---|
489 | /** Pointer to an internal tree pointer.
|
---|
490 | * In this case it's a pointer to a relative offset. */
|
---|
491 | typedef AVLROOGCPTRTREE *PPAVLROOGCPTRNODECORE;
|
---|
492 |
|
---|
493 | /** Callback function for RTAvlrooGCPtrDoWithAll() and RTAvlrooGCPtrDestroy(). */
|
---|
494 | typedef DECLCALLBACK(int) AVLROOGCPTRCALLBACK(PAVLROOGCPTRNODECORE pNode, void *pvUser);
|
---|
495 | /** Pointer to callback function for RTAvlrooGCPtrDoWithAll() and RTAvlrooGCPtrDestroy(). */
|
---|
496 | typedef AVLROOGCPTRCALLBACK *PAVLROOGCPTRCALLBACK;
|
---|
497 |
|
---|
498 | RTDECL(bool) RTAvlrooGCPtrInsert(PAVLROOGCPTRTREE pTree, PAVLROOGCPTRNODECORE pNode);
|
---|
499 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRemove(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
|
---|
500 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGet(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
|
---|
501 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetBestFit(PAVLROOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
|
---|
502 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRangeGet(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
|
---|
503 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRangeRemove(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
|
---|
504 | RTDECL(int) RTAvlrooGCPtrDoWithAll(PAVLROOGCPTRTREE pTree, int fFromLeft, PAVLROOGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
505 | RTDECL(int) RTAvlrooGCPtrDestroy(PAVLROOGCPTRTREE pTree, PAVLROOGCPTRCALLBACK pfnCallBack, void *pvParam);
|
---|
506 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetRoot(PAVLROOGCPTRTREE pTree);
|
---|
507 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetLeft(PAVLROOGCPTRNODECORE pNode);
|
---|
508 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetRight(PAVLROOGCPTRNODECORE pNode);
|
---|
509 | RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetNextEqual(PAVLROOGCPTRNODECORE pNode);
|
---|
510 |
|
---|
511 | /** @} */
|
---|
512 |
|
---|
513 |
|
---|
514 | /** AVL tree of RTHCPHYSes - using relative offsets internally.
|
---|
515 | * @{
|
---|
516 | */
|
---|
517 |
|
---|
518 | /**
|
---|
519 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
520 | */
|
---|
521 | typedef int32_t AVLOHCPHYS;
|
---|
522 |
|
---|
523 | /**
|
---|
524 | * AVL Core node.
|
---|
525 | */
|
---|
526 | typedef struct _AVLOHCPhysNodeCore
|
---|
527 | {
|
---|
528 | /** Key value. */
|
---|
529 | RTHCPHYS Key;
|
---|
530 | /** Offset to the left leaf node, relative to this field. */
|
---|
531 | AVLOHCPHYS pLeft;
|
---|
532 | /** Offset to the right leaf node, relative to this field. */
|
---|
533 | AVLOHCPHYS pRight;
|
---|
534 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
535 | unsigned char uchHeight;
|
---|
536 | #if HC_ARCH_BITS == 64 || GC_ARCH_BITS == 64
|
---|
537 | unsigned char Padding[7]; /**< Alignment padding. */
|
---|
538 | #endif
|
---|
539 | } AVLOHCPHYSNODECORE, *PAVLOHCPHYSNODECORE;
|
---|
540 |
|
---|
541 | /** A offset base tree with uint32_t keys. */
|
---|
542 | typedef AVLOHCPHYS AVLOHCPHYSTREE;
|
---|
543 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
544 | typedef AVLOHCPHYSTREE *PAVLOHCPHYSTREE;
|
---|
545 |
|
---|
546 | /** Pointer to an internal tree pointer.
|
---|
547 | * In this case it's a pointer to a relative offset. */
|
---|
548 | typedef AVLOHCPHYSTREE *PPAVLOHCPHYSNODECORE;
|
---|
549 |
|
---|
550 | /** Callback function for RTAvloHCPhysDoWithAll() and RTAvloHCPhysDestroy(). */
|
---|
551 | typedef DECLCALLBACK(int) AVLOHCPHYSCALLBACK(PAVLOHCPHYSNODECORE pNode, void *pvUser);
|
---|
552 | /** Pointer to callback function for RTAvloHCPhysDoWithAll() and RTAvloHCPhysDestroy(). */
|
---|
553 | typedef AVLOHCPHYSCALLBACK *PAVLOHCPHYSCALLBACK;
|
---|
554 |
|
---|
555 | RTDECL(bool) RTAvloHCPhysInsert(PAVLOHCPHYSTREE pTree, PAVLOHCPHYSNODECORE pNode);
|
---|
556 | RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysRemove(PAVLOHCPHYSTREE pTree, RTHCPHYS Key);
|
---|
557 | RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysGet(PAVLOHCPHYSTREE pTree, RTHCPHYS Key);
|
---|
558 | RTDECL(int) RTAvloHCPhysDoWithAll(PAVLOHCPHYSTREE pTree, int fFromLeft, PAVLOHCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
559 | RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysGetBestFit(PAVLOHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
|
---|
560 | RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysRemoveBestFit(PAVLOHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
|
---|
561 | RTDECL(int) RTAvloHCPhysDestroy(PAVLOHCPHYSTREE pTree, PAVLOHCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
562 |
|
---|
563 | /** @} */
|
---|
564 |
|
---|
565 |
|
---|
566 |
|
---|
567 | /** AVL tree of RTIOPORTs - using relative offsets internally.
|
---|
568 | * @{
|
---|
569 | */
|
---|
570 |
|
---|
571 | /**
|
---|
572 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
573 | */
|
---|
574 | typedef int32_t AVLOIOPORTPTR;
|
---|
575 |
|
---|
576 | /**
|
---|
577 | * AVL Core node.
|
---|
578 | */
|
---|
579 | typedef struct _AVLOIOPortNodeCore
|
---|
580 | {
|
---|
581 | /** Offset to the left leaf node, relative to this field. */
|
---|
582 | AVLOIOPORTPTR pLeft;
|
---|
583 | /** Offset to the right leaf node, relative to this field. */
|
---|
584 | AVLOIOPORTPTR pRight;
|
---|
585 | /** Key value. */
|
---|
586 | RTIOPORT Key;
|
---|
587 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
588 | unsigned char uchHeight;
|
---|
589 | } AVLOIOPORTNODECORE, *PAVLOIOPORTNODECORE;
|
---|
590 |
|
---|
591 | /** A offset base tree with uint32_t keys. */
|
---|
592 | typedef AVLOIOPORTPTR AVLOIOPORTTREE;
|
---|
593 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
594 | typedef AVLOIOPORTTREE *PAVLOIOPORTTREE;
|
---|
595 |
|
---|
596 | /** Pointer to an internal tree pointer.
|
---|
597 | * In this case it's a pointer to a relative offset. */
|
---|
598 | typedef AVLOIOPORTTREE *PPAVLOIOPORTNODECORE;
|
---|
599 |
|
---|
600 | /** Callback function for RTAvloIOPortDoWithAll() and RTAvloIOPortDestroy(). */
|
---|
601 | typedef DECLCALLBACK(int) AVLOIOPORTCALLBACK(PAVLOIOPORTNODECORE pNode, void *pvUser);
|
---|
602 | /** Pointer to callback function for RTAvloIOPortDoWithAll() and RTAvloIOPortDestroy(). */
|
---|
603 | typedef AVLOIOPORTCALLBACK *PAVLOIOPORTCALLBACK;
|
---|
604 |
|
---|
605 | RTDECL(bool) RTAvloIOPortInsert(PAVLOIOPORTTREE pTree, PAVLOIOPORTNODECORE pNode);
|
---|
606 | RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortRemove(PAVLOIOPORTTREE pTree, RTIOPORT Key);
|
---|
607 | RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortGet(PAVLOIOPORTTREE pTree, RTIOPORT Key);
|
---|
608 | RTDECL(int) RTAvloIOPortDoWithAll(PAVLOIOPORTTREE pTree, int fFromLeft, PAVLOIOPORTCALLBACK pfnCallBack, void *pvParam);
|
---|
609 | RTDECL(int) RTAvloIOPortDestroy(PAVLOIOPORTTREE pTree, PAVLOIOPORTCALLBACK pfnCallBack, void *pvParam);
|
---|
610 |
|
---|
611 | /** @} */
|
---|
612 |
|
---|
613 |
|
---|
614 | /** AVL tree of RTIOPORT ranges - using relative offsets internally.
|
---|
615 | * @{
|
---|
616 | */
|
---|
617 |
|
---|
618 | /**
|
---|
619 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
620 | */
|
---|
621 | typedef int32_t AVLROIOPORTPTR;
|
---|
622 |
|
---|
623 | /**
|
---|
624 | * AVL Core node.
|
---|
625 | */
|
---|
626 | typedef struct _AVLROIOPortNodeCore
|
---|
627 | {
|
---|
628 | /** First key value in the range (inclusive). */
|
---|
629 | RTIOPORT Key;
|
---|
630 | /** Last key value in the range (inclusive). */
|
---|
631 | RTIOPORT KeyLast;
|
---|
632 | /** Offset to the left leaf node, relative to this field. */
|
---|
633 | AVLROIOPORTPTR pLeft;
|
---|
634 | /** Offset to the right leaf node, relative to this field. */
|
---|
635 | AVLROIOPORTPTR pRight;
|
---|
636 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
637 | unsigned char uchHeight;
|
---|
638 | } AVLROIOPORTNODECORE, *PAVLROIOPORTNODECORE;
|
---|
639 |
|
---|
640 | /** A offset base tree with uint32_t keys. */
|
---|
641 | typedef AVLROIOPORTPTR AVLROIOPORTTREE;
|
---|
642 | /** Pointer to a offset base tree with uint32_t keys. */
|
---|
643 | typedef AVLROIOPORTTREE *PAVLROIOPORTTREE;
|
---|
644 |
|
---|
645 | /** Pointer to an internal tree pointer.
|
---|
646 | * In this case it's a pointer to a relative offset. */
|
---|
647 | typedef AVLROIOPORTTREE *PPAVLROIOPORTNODECORE;
|
---|
648 |
|
---|
649 | /** Callback function for RTAvlroIOPortDoWithAll() and RTAvlroIOPortDestroy(). */
|
---|
650 | typedef DECLCALLBACK(int) AVLROIOPORTCALLBACK(PAVLROIOPORTNODECORE pNode, void *pvUser);
|
---|
651 | /** Pointer to callback function for RTAvlroIOPortDoWithAll() and RTAvlroIOPortDestroy(). */
|
---|
652 | typedef AVLROIOPORTCALLBACK *PAVLROIOPORTCALLBACK;
|
---|
653 |
|
---|
654 | RTDECL(bool) RTAvlroIOPortInsert(PAVLROIOPORTTREE pTree, PAVLROIOPORTNODECORE pNode);
|
---|
655 | RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRemove(PAVLROIOPORTTREE pTree, RTIOPORT Key);
|
---|
656 | RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortGet(PAVLROIOPORTTREE pTree, RTIOPORT Key);
|
---|
657 | RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRangeGet(PAVLROIOPORTTREE pTree, RTIOPORT Key);
|
---|
658 | RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRangeRemove(PAVLROIOPORTTREE pTree, RTIOPORT Key);
|
---|
659 | RTDECL(int) RTAvlroIOPortDoWithAll(PAVLROIOPORTTREE pTree, int fFromLeft, PAVLROIOPORTCALLBACK pfnCallBack, void *pvParam);
|
---|
660 | RTDECL(int) RTAvlroIOPortDestroy(PAVLROIOPORTTREE pTree, PAVLROIOPORTCALLBACK pfnCallBack, void *pvParam);
|
---|
661 |
|
---|
662 | /** @} */
|
---|
663 |
|
---|
664 |
|
---|
665 | /** AVL tree of RTHCPHYSes.
|
---|
666 | * @{
|
---|
667 | */
|
---|
668 |
|
---|
669 | /**
|
---|
670 | * AVL 'pointer' type for the relative offset pointer scheme.
|
---|
671 | */
|
---|
672 | typedef struct _AVLHCPhysNodeCore *AVLHCPHYSPTR;
|
---|
673 |
|
---|
674 | /**
|
---|
675 | * AVL Core node.
|
---|
676 | */
|
---|
677 | typedef struct _AVLHCPhysNodeCore
|
---|
678 | {
|
---|
679 | /** Offset to the left leaf node, relative to this field. */
|
---|
680 | AVLHCPHYSPTR pLeft;
|
---|
681 | /** Offset to the right leaf node, relative to this field. */
|
---|
682 | AVLHCPHYSPTR pRight;
|
---|
683 | /** Key value. */
|
---|
684 | RTHCPHYS Key;
|
---|
685 | /** Height of this tree: max(height(left), height(right)) + 1 */
|
---|
686 | unsigned char uchHeight;
|
---|
687 | } AVLHCPHYSNODECORE, *PAVLHCPHYSNODECORE;
|
---|
688 |
|
---|
689 | /** A offset base tree with RTHCPHYS keys. */
|
---|
690 | typedef AVLHCPHYSPTR AVLHCPHYSTREE;
|
---|
691 | /** Pointer to a offset base tree with RTHCPHYS keys. */
|
---|
692 | typedef AVLHCPHYSTREE *PAVLHCPHYSTREE;
|
---|
693 |
|
---|
694 | /** Pointer to an internal tree pointer.
|
---|
695 | * In this case it's a pointer to a relative offset. */
|
---|
696 | typedef AVLHCPHYSTREE *PPAVLHCPHYSNODECORE;
|
---|
697 |
|
---|
698 | /** Callback function for RTAvlHCPhysDoWithAll() and RTAvlHCPhysDestroy(). */
|
---|
699 | typedef DECLCALLBACK(int) AVLHCPHYSCALLBACK(PAVLHCPHYSNODECORE pNode, void *pvUser);
|
---|
700 | /** Pointer to callback function for RTAvlHCPhysDoWithAll() and RTAvlHCPhysDestroy(). */
|
---|
701 | typedef AVLHCPHYSCALLBACK *PAVLHCPHYSCALLBACK;
|
---|
702 |
|
---|
703 | RTDECL(bool) RTAvlHCPhysInsert(PAVLHCPHYSTREE pTree, PAVLHCPHYSNODECORE pNode);
|
---|
704 | RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysRemove(PAVLHCPHYSTREE pTree, RTHCPHYS Key);
|
---|
705 | RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysGet(PAVLHCPHYSTREE pTree, RTHCPHYS Key);
|
---|
706 | RTDECL(int) RTAvlHCPhysDoWithAll(PAVLHCPHYSTREE pTree, int fFromLeft, PAVLHCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
707 | RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysGetBestFit(PAVLHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
|
---|
708 | RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysRemoveBestFit(PAVLHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
|
---|
709 | RTDECL(int) RTAvlHCPhysDestroy(PAVLHCPHYSTREE pTree, PAVLHCPHYSCALLBACK pfnCallBack, void *pvParam);
|
---|
710 |
|
---|
711 | /** @} */
|
---|
712 |
|
---|
713 |
|
---|
714 | /** @} */
|
---|
715 |
|
---|
716 | __END_DECLS
|
---|
717 |
|
---|
718 | #endif
|
---|
719 |
|
---|