1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
/*
* Dkhash64.h
*
* $Id$
*
* int64 hashtable for 32 bit platforms
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2012 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef DKHASH64_H
#define DKHASH64_H
#define dk_hash_64_t id_hash_t
#define hash_table_allocate_64(sz) id_hash_allocate (sz, sizeof (boxint), sizeof (boxint), boxint_hash, boxint_hashcmp)
#define sethash_64(k, ht, v) \
{ \
int64 kr = k, vr = v; \
id_hash_set (ht, (caddr_t)&kr, (caddr_t)&vr); \
}
#define gethash_64(res, k, ht) \
{ \
int64 * vp, kv = k; \
vp = (int64*) id_hash_get (ht, (caddr_t)&kv); \
if (!vp) res = 0; else res = *vp; \
}
#ifdef RH_TRACE
#define remhash_64(k, ht) \
{ \
int64 kv = k; \
ht->ht_rem_k = kv; \
ht->ht_rem_line = __LINE__; \
ht->ht_rem_file = __FILE__; \
id_hash_remove (ht, (caddr_t) &kv); \
}
#else
#define remhash_64(k, ht) \
{ \
int64 kv = k; \
id_hash_remove (ht, (caddr_t) &kv); \
}
#endif
#define hash_table_free_64(ht) \
id_hash_free (ht)
#define dk_hash_64_iterator_t id_hash_iterator_t
#define dk_hash_64_iterator id_hash_iterator
#define dk_hash_64_hit_next hit_next
#endif
|