VirtualBox

source: vbox/trunk/src/VBox/Runtime/table/avlrogcptr.cpp@ 4337

Last change on this file since 4337 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1/* $Id: avlrogcptr.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - AVL tree, RTGCPTR, range, unique keys, offset pointers.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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
18#ifndef NOFILEID
19static const char szFileId[] = "Id: kAVLULInt.c,v 1.4 2003/02/13 02:02:38 bird Exp $";
20#endif
21
22/*******************************************************************************
23* Defined Constants And Macros *
24*******************************************************************************/
25/*
26 * AVL configuration.
27 */
28#define KAVL_FN(a) RTAvlroGCPtr##a
29#define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */
30#define KAVL_CHECK_FOR_EQUAL_INSERT 1 /* No duplicate keys! */
31#define KAVLNODECORE AVLROGCPTRNODECORE
32#define PKAVLNODECORE PAVLROGCPTRNODECORE
33#define PPKAVLNODECORE PPAVLROGCPTRNODECORE
34#define KAVLKEY RTGCPTR
35#define PKAVLKEY PRTGCPTR
36#define KAVLENUMDATA AVLROGCPTRENUMDATA
37#define PKAVLENUMDATA PAVLROGCPTRENUMDATA
38#define PKAVLCALLBACK PAVLROGCPTRCALLBACK
39#define KAVL_OFFSET 1
40#define KAVL_RANGE 1
41
42
43/*
44 * AVL Compare macros
45 */
46#define KAVL_G( key1, key2) ( (RTGCUINTPTR)(key1) > (RTGCUINTPTR)(key2) )
47#define KAVL_E( key1, key2) ( (RTGCUINTPTR)(key1) == (RTGCUINTPTR)(key2) )
48#define KAVL_NE(key1, key2) ( (RTGCUINTPTR)(key1) != (RTGCUINTPTR)(key2) )
49#define KAVL_R_IS_IDENTICAL(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) == (RTGCUINTPTR)(key2B) && (RTGCUINTPTR)(key1E) == (RTGCUINTPTR)(key2E) )
50#define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) <= (RTGCUINTPTR)(key2E) && (RTGCUINTPTR)(key1E) >= (RTGCUINTPTR)(key2B) )
51#define KAVL_R_IS_IN_RANGE(key1B, key1E, key2) KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
52
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_Range.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
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