VirtualBox

source: vbox/trunk/src/VBox/Runtime/table/avlohcphys.cpp@ 4071

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

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

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1/* $Id: avlohcphys.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - AVL tree, RTHCPHYS, 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) RTAvloHCPhys##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 AVLOHCPHYSNODECORE
32#define PKAVLNODECORE PAVLOHCPHYSNODECORE
33#define PPKAVLNODECORE PPAVLOHCPHYSNODECORE
34#define KAVLKEY RTHCPHYS
35#define PKAVLKEY PRTHCPHYS
36#define KAVLENUMDATA AVLOHCPHYSENUMDATA
37#define PKAVLENUMDATA PAVLOHCPHYSENUMDATA
38#define PKAVLCALLBACK PAVLOHCPHYSCALLBACK
39#define KAVL_OFFSET 1
40
41
42/*
43 * AVL Compare macros
44 */
45#define KAVL_G( key1, key2) ( (key1) > (key2) )
46#define KAVL_E( key1, key2) ( (key1) == (key2) )
47#define KAVL_NE(key1, key2) ( (key1) != (key2) )
48
49
50/*******************************************************************************
51* Header Files *
52*******************************************************************************/
53#include <iprt/avl.h>
54#include <iprt/assert.h>
55
56/*
57 * Include the code.
58 */
59#define SSToDS(ptr) ptr
60#define KMAX RT_MAX
61#define kASSERT Assert
62#include "avl_Base.cpp.h"
63#include "avl_Get.cpp.h"
64#include "avl_DoWithAll.cpp.h"
65#include "avl_GetBestFit.cpp.h"
66#include "avl_RemoveBestFit.cpp.h"
67#include "avl_Destroy.cpp.h"
68
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