#include "Types.hpp"#include "MemStreamer.hpp"#include "LabelDict.hpp"#include "ContMan.hpp"Go to the source code of this file.
Compounds | |
| class | PathDict |
| class | PathDictNode |
Defines | |
| #define | PATHDICT_HASHSIZE 512 |
| #define | PATHDICT_HASHMASK 511 |
Functions | |
| unsigned long | ComputePathDictHashIdx (PathDictNode *parent, TLabelID labelid) |
| unsigned long | ComputePathDictHashIdx (VPathExpr *pathexpr) |
Variables | |
| MemStreamer * | pathdictmem |
| PathDict | pathdict |
|
|
Definition at line 63 of file PathDict.hpp. |
|
|
Definition at line 62 of file PathDict.hpp. |
|
|
Definition at line 124 of file PathDict.hpp. 00127 {
00128 return (((unsigned long)pathexpr)-1)&PATHDICT_HASHMASK;
00129 }
|
|
||||||||||||
|
Definition at line 117 of file PathDict.hpp. 00120 {
00121 return (((unsigned long)parent)+labelid)&PATHDICT_HASHMASK;
00122 }
|
|
|
Definition at line 266 of file PathDict.hpp. |
|
|
Definition at line 54 of file PathDict.hpp. |
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001