diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-06-24 22:28:35 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-06-24 22:28:35 +0000 |
commit | 3950ffe2a485479f6561c27364d3d7df5a21d124 (patch) | |
tree | 468c6e14449d1b1e279222ec32f676b0311917d2 /src/lib/libast/hash/hashsize.c | |
download | ksh-upstream.tar.gz |
Imported Upstream version 93u+upstream
Diffstat (limited to 'src/lib/libast/hash/hashsize.c')
-rw-r--r-- | src/lib/libast/hash/hashsize.c | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/lib/libast/hash/hashsize.c b/src/lib/libast/hash/hashsize.c new file mode 100644 index 0000000..0c458ba --- /dev/null +++ b/src/lib/libast/hash/hashsize.c @@ -0,0 +1,84 @@ +/*********************************************************************** +* * +* This software is part of the ast package * +* Copyright (c) 1985-2011 AT&T Intellectual Property * +* and is licensed under the * +* Eclipse Public License, Version 1.0 * +* by AT&T Intellectual Property * +* * +* A copy of the License is available at * +* http://www.eclipse.org/org/documents/epl-v10.html * +* (with md5 checksum b35adb5213ca9657e911e9befb180842) * +* * +* Information and Software Systems Research * +* AT&T Research * +* Florham Park NJ * +* * +* Glenn Fowler <gsf@research.att.com> * +* David Korn <dgk@research.att.com> * +* Phong Vo <kpv@research.att.com> * +* * +***********************************************************************/ +#pragma prototyped +/* + * Glenn Fowler + * AT&T Research + * + * hash table library + */ + +#include "hashlib.h" + +/* + * change table size and rehash + * size must be a power of 2 + */ + +void +hashsize(register Hash_table_t* tab, int size) +{ + register Hash_bucket_t** old_s; + register Hash_bucket_t** new_s; + register Hash_bucket_t* old_b; + register Hash_bucket_t* new_b; + Hash_bucket_t** old_sx; + unsigned int index; + Hash_region_f region; + void* handle; + + if (size > 0 && size != tab->size && !(size & (size - 1))) + { + if (region = tab->root->local->region) + { + handle = tab->root->local->handle; + new_s = (Hash_bucket_t**)(*region)(handle, NiL, sizeof(Hash_bucket_t*) * size, 0); + } + else new_s = newof(0, Hash_bucket_t*, size, 0); + if (!new_s) tab->flags |= HASH_FIXED; + else + { + old_sx = (old_s = tab->table) + tab->size; + tab->size = size; + while (old_s < old_sx) + { + old_b = *old_s++; + while (old_b) + { + new_b = old_b; + old_b = old_b->next; + index = new_b->hash; + HASHMOD(tab, index); + new_b->next = new_s[index]; + new_s[index] = new_b; + } + } + if ((tab->flags & (HASH_RESIZE|HASH_STATIC)) != HASH_STATIC) + { + if (region) (*region)(handle, tab->table, 0, 0); + else free(tab->table); + } + tab->table = new_s; + tab->flags |= HASH_RESIZE; + } + } +} |