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