VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/table/avlpv.cpp@ 5422

Last change on this file since 5422 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: 2.4 KB
Line 
1/* $Id: avlpv.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - AVL tree, void *, unique keys.
4 */
5
6/*
7 * Copyright (C) 2001-2003 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: kAVLPVInt.c,v 1.5 2003/02/13 02:02:35 bird Exp $";
20#endif
21
22/*******************************************************************************
23* Defined Constants And Macros *
24*******************************************************************************/
25/*
26 * AVL configuration.
27 */
28#define KAVL_FN(a) RTAvlPV##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 AVLPVNODECORE
32#define PKAVLNODECORE PAVLPVNODECORE
33#define PPKAVLNODECORE PPAVLPVNODECORE
34#define KAVLKEY AVLPVKEY
35#define PKAVLKEY PAVLPVKEY
36#define KAVLENUMDATA AVLPVENUMDATA
37#define PKAVLENUMDATA PAVLPVENUMDATA
38#define PKAVLCALLBACK PAVLPVCALLBACK
39
40
41/*
42 * AVL Compare macros
43 */
44#define KAVL_G(key1, key2) ( (const char*)(key1) > (const char*)(key2) )
45#define KAVL_E(key1, key2) ( (const char*)(key1) == (const char*)(key2) )
46#define KAVL_NE(key1, key2) ( (const char*)(key1) != (const char*)(key2) )
47
48
49/*******************************************************************************
50* Header Files *
51*******************************************************************************/
52#include <iprt/avl.h>
53#include <iprt/assert.h>
54
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_GetBestFit.cpp.h"
65#include "avl_RemoveBestFit.cpp.h"
66#include "avl_DoWithAll.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