VirtualBox

source: vbox/trunk/src/VBox/Runtime/table/avlroogcptr.cpp@ 2919

Last change on this file since 2919 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1/* $Id: avlroogcptr.cpp 1 1970-01-01 00:00:00Z vboxsync $ */
2/** @file
3 * InnoTek Portable Runtime - AVL tree, RTGCPTR, range, unique keys, overlapping ranges, 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
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) RTAvlrooGCPtr##a
34#define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */
35#define KAVL_EQUAL_ALLOWED 1 /* Duplicate keys allowed */
36#define KAVLNODECORE AVLROOGCPTRNODECORE
37#define PKAVLNODECORE PAVLROOGCPTRNODECORE
38#define PPKAVLNODECORE PPAVLROOGCPTRNODECORE
39#define KAVLKEY RTGCPTR
40#define PKAVLKEY PRTGCPTR
41#define KAVLENUMDATA AVLROOGCPTRENUMDATA
42#define PKAVLENUMDATA PAVLROOGCPTRENUMDATA
43#define PKAVLCALLBACK PAVLROOGCPTRCALLBACK
44#define KAVL_OFFSET 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
54
55
56/*******************************************************************************
57* Header Files *
58*******************************************************************************/
59#include <iprt/avl.h>
60#include <iprt/assert.h>
61
62/*
63 * Include the code.
64 */
65#define SSToDS(ptr) ptr
66#define KMAX RT_MAX
67#define kASSERT Assert
68#include "avl_Base.cpp.h"
69#include "avl_Get.cpp.h"
70#include "avl_DoWithAll.cpp.h"
71#include "avl_Destroy.cpp.h"
72#include "avl_GetBestFit.cpp.h"
73#include "avl_Enum.cpp.h"
74
75/*
76 * Defined only for the range functions as we allow for overlapping ranges.
77 */
78#undef KAVL_R_IS_IDENTICAL
79#undef KAVL_R_IS_INTERSECTING
80#undef KAVL_R_IS_IN_RANGE
81#define KAVL_RANGE 1
82#define KAVL_R_IS_IDENTICAL( key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) == (RTGCUINTPTR)(key2B) && (RTGCUINTPTR)(key1E) == (RTGCUINTPTR)(key2E) )
83#define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) <= (RTGCUINTPTR)(key2E) && (RTGCUINTPTR)(key1E) >= (RTGCUINTPTR)(key2B) )
84#define KAVL_R_IS_IN_RANGE( key1B, key1E, key2) KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
85#include "avl_Range.cpp.h"
86
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