VirtualBox

source: vbox/trunk/src/VBox/Runtime/table/avlrgcptr.cpp@ 1071

Last change on this file since 1071 was 449, checked in by vboxsync, 18 years ago

RTAvlrGCPtr*

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1/* $Id: avlrgcptr.cpp 449 2007-01-30 23:03:57Z vboxsync $ */
2/** @file
3 * InnoTek Portable Runtime - AVL tree, RTGCPTR, range, unique keys.
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
24static 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) RTAvlrGCPtr##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 AVLRGCPTRNODECORE
37#define PKAVLNODECORE PAVLRGCPTRNODECORE
38#define PPKAVLNODECORE PPAVLRGCPTRNODECORE
39#define KAVLKEY RTGCPTR
40#define PKAVLKEY PRTGCPTR
41#define KAVLENUMDATA AVLRGCPTRENUMDATA
42#define PKAVLENUMDATA PAVLRGCPTRENUMDATA
43#define PKAVLCALLBACK PAVLRGCPTRCALLBACK
44#define KAVL_RANGE 1
45
46
47/*
48 * AVL Compare macros
49 */
50#define KAVL_G( key1, key2) ( (RTGCUINTPTR)(key1) > (RTGCUINTPTR)(key2) )
51#define KAVL_E( key1, key2) ( (RTGCUINTPTR)(key1) == (RTGCUINTPTR)(key2) )
52#define KAVL_NE(key1, key2) ( (RTGCUINTPTR)(key1) != (RTGCUINTPTR)(key2) )
53#define KAVL_R_IS_IDENTICAL(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) == (RTGCUINTPTR)(key2B) && (RTGCUINTPTR)(key1E) == (RTGCUINTPTR)(key2E) )
54#define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) <= (RTGCUINTPTR)(key2E) && (RTGCUINTPTR)(key1E) >= (RTGCUINTPTR)(key2B) )
55#define KAVL_R_IS_IN_RANGE(key1B, key1E, key2) KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
56
57
58
59/*******************************************************************************
60* Header Files *
61*******************************************************************************/
62#include <iprt/avl.h>
63#include <iprt/assert.h>
64
65/*
66 * Include the code.
67 */
68#define SSToDS(ptr) ptr
69#define KMAX RT_MAX
70#define kASSERT Assert
71#include "avl_Base.cpp.h"
72#include "avl_Get.cpp.h"
73#include "avl_Range.cpp.h"
74#include "avl_DoWithAll.cpp.h"
75#include "avl_Destroy.cpp.h"
76#include "avl_GetBestFit.cpp.h"
77#include "avl_Enum.cpp.h"
78
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette