~ubuntu-branches/ubuntu/gutsy/virtualbox-ose/gutsy

« back to all changes in this revision

Viewing changes to src/VBox/Runtime/table/avlrgcptr.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-09-08 16:44:58 UTC
  • Revision ID: james.westby@ubuntu.com-20070908164458-wao29470vqtr8ksy
Tags: upstream-1.5.0-dfsg2
ImportĀ upstreamĀ versionĀ 1.5.0-dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: avlrgcptr.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
 
2
/** @file
 
3
 * innotek Portable Runtime - AVL tree, RTGCPTR, range, unique keys.
 
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
 
19
static 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)                  RTAvlrGCPtr##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                AVLRGCPTRNODECORE
 
32
#define PKAVLNODECORE               PAVLRGCPTRNODECORE
 
33
#define PPKAVLNODECORE              PPAVLRGCPTRNODECORE
 
34
#define KAVLKEY                     RTGCPTR
 
35
#define PKAVLKEY                    PRTGCPTR
 
36
#define KAVLENUMDATA                AVLRGCPTRENUMDATA
 
37
#define PKAVLENUMDATA               PAVLRGCPTRENUMDATA
 
38
#define PKAVLCALLBACK               PAVLRGCPTRCALLBACK
 
39
#define KAVL_RANGE                  1
 
40
 
 
41
 
 
42
/*
 
43
 * AVL Compare macros
 
44
 */
 
45
#define KAVL_G( key1, key2)         ( (RTGCUINTPTR)(key1) >  (RTGCUINTPTR)(key2) )
 
46
#define KAVL_E( key1, key2)         ( (RTGCUINTPTR)(key1) == (RTGCUINTPTR)(key2) )
 
47
#define KAVL_NE(key1, key2)         ( (RTGCUINTPTR)(key1) != (RTGCUINTPTR)(key2) )
 
48
#define KAVL_R_IS_IDENTICAL(key1B, key2B, key1E, key2E)     ( (RTGCUINTPTR)(key1B) == (RTGCUINTPTR)(key2B) && (RTGCUINTPTR)(key1E) == (RTGCUINTPTR)(key2E) )
 
49
#define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E)  ( (RTGCUINTPTR)(key1B) <= (RTGCUINTPTR)(key2E) && (RTGCUINTPTR)(key1E) >= (RTGCUINTPTR)(key2B) )
 
50
#define KAVL_R_IS_IN_RANGE(key1B, key1E, key2)              KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
 
51
 
 
52
 
 
53
 
 
54
/*******************************************************************************
 
55
*   Header Files                                                               *
 
56
*******************************************************************************/
 
57
#include <iprt/avl.h>
 
58
#include <iprt/assert.h>
 
59
 
 
60
/*
 
61
 * Include the code.
 
62
 */
 
63
#define SSToDS(ptr) ptr
 
64
#define KMAX        RT_MAX
 
65
#define kASSERT     Assert
 
66
#include "avl_Base.cpp.h"
 
67
#include "avl_Get.cpp.h"
 
68
#include "avl_Range.cpp.h"
 
69
#include "avl_DoWithAll.cpp.h"
 
70
#include "avl_Destroy.cpp.h"
 
71
#include "avl_GetBestFit.cpp.h"
 
72
#include "avl_Enum.cpp.h"
 
73