VirtualBox

source: vbox/trunk/src/VBox/Runtime/table/avl_Range.cpp.h@ 628

Last change on this file since 628 was 402, checked in by vboxsync, 18 years ago

Added missing RTDECL so it'll compile cleanly in Ring-0 on NT where default calling convention is stdcall and not cdecl like RTCALL.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1/* $Id: avl_Range.cpp.h 402 2007-01-28 08:44:20Z vboxsync $ */
2/** @file
3 * kAVLRange - Range routines for AVL trees.
4 */
5
6/*
7 * Copyright (C) 1999-2006 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 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef _kAVLRange_h_
23#define _kAVLRange_h_
24
25/**
26 * Finds the range containing the specified key.
27 *
28 * @returns Pointer to the matching range.
29 *
30 * @param ppTree Pointer to Pointer to the tree root node.
31 * @param Key The Key to find matching range for.
32 */
33RTDECL(PKAVLNODECORE) KAVL_FN(RangeGet)(PPKAVLNODECORE ppTree, register KAVLKEY Key)
34{
35 register PKAVLNODECORE pNode = KAVL_GET_POINTER_NULL(ppTree);
36 if (pNode)
37 {
38 for (;;)
39 {
40 if (KAVL_R_IS_IN_RANGE(pNode->Key, pNode->KeyLast, Key))
41 return pNode;
42 if (KAVL_G(pNode->Key, Key))
43 {
44 if (pNode->pLeft != KAVL_NULL)
45 pNode = KAVL_GET_POINTER(&pNode->pLeft);
46 else
47 return NULL;
48 }
49 else
50 {
51 if (pNode->pRight != KAVL_NULL)
52 pNode = KAVL_GET_POINTER(&pNode->pRight);
53 else
54 return NULL;
55 }
56 }
57 }
58
59 return NULL;
60}
61
62
63/**
64 * Removes the range containing the specified key.
65 *
66 * @returns Pointer to the matching range.
67 *
68 * @param ppTree Pointer to Pointer to the tree root node.
69 * @param Key The Key to remove matching range for.
70 */
71RTDECL(PKAVLNODECORE) KAVL_FN(RangeRemove)(PPKAVLNODECORE ppTree, KAVLKEY Key)
72{
73 PKAVLNODECORE pNode = KAVL_FN(RangeGet)(ppTree, Key);
74 if (pNode)
75 return KAVL_FN(Remove)(ppTree, pNode->Key);
76 return NULL;
77}
78
79#endif
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