#include <GUID.h>
Public Types | |
| enum | { bucket_size = 4, min_buckets = 8 } |
Public Member Functions | |
| size_t | operator() (const vpr::GUID &guid) const |
| bool | operator() (const vpr::GUID &guid1, const vpr::GUID &guid2) const |
Definition at line 232 of file GUID.h.
| anonymous enum |
| size_t vpr::GUID::hash::operator() | ( | const vpr::GUID & | guid | ) | const [inline] |
Definition at line 239 of file GUID.h.
References vpr::GUID::_vpr_guid::_packed::l0, vpr::GUID::_vpr_guid::_packed::l1, vpr::GUID::_vpr_guid::_packed::l2, vpr::GUID::_vpr_guid::_packed::l3, vpr::GUID::mGuid, and vpr::GUID::_vpr_guid::packed.
00240 { 00241 return guid.mGuid.packed.l0 + guid.mGuid.packed.l1 + 00242 guid.mGuid.packed.l2 + guid.mGuid.packed.l3; 00243 }
1.5.1