2010-05-13 Michael Snyder <msnyder@vmware.com>
* dictionary.c: Re-indent to GNU coding standard.
This commit is contained in:
parent
e98d11e779
commit
6595d32bb2
2 changed files with 25 additions and 19 deletions
|
@ -1,5 +1,7 @@
|
|||
2010-05-13 Michael Snyder <msnyder@vmware.com>
|
||||
|
||||
* dictionary.c: Re-indent to GNU coding standard.
|
||||
|
||||
* charset.c: White space.
|
||||
* c-lang.c: White space.
|
||||
* cli-out.c: White space.
|
||||
|
|
|
@ -724,21 +724,24 @@ expand_hashtable (struct dictionary *dict)
|
|||
DICT_HASHED_NBUCKETS (dict) = new_nbuckets;
|
||||
DICT_HASHED_BUCKETS (dict) = new_buckets;
|
||||
|
||||
for (i = 0; i < old_nbuckets; ++i) {
|
||||
struct symbol *sym, *next_sym;
|
||||
for (i = 0; i < old_nbuckets; ++i)
|
||||
{
|
||||
struct symbol *sym, *next_sym;
|
||||
|
||||
sym = old_buckets[i];
|
||||
if (sym != NULL) {
|
||||
for (next_sym = sym->hash_next;
|
||||
next_sym != NULL;
|
||||
next_sym = sym->hash_next) {
|
||||
insert_symbol_hashed (dict, sym);
|
||||
sym = next_sym;
|
||||
}
|
||||
sym = old_buckets[i];
|
||||
if (sym != NULL)
|
||||
{
|
||||
for (next_sym = sym->hash_next;
|
||||
next_sym != NULL;
|
||||
next_sym = sym->hash_next)
|
||||
{
|
||||
insert_symbol_hashed (dict, sym);
|
||||
sym = next_sym;
|
||||
}
|
||||
|
||||
insert_symbol_hashed (dict, sym);
|
||||
insert_symbol_hashed (dict, sym);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
xfree (old_buckets);
|
||||
}
|
||||
|
@ -821,13 +824,14 @@ add_symbol_linear_expandable (struct dictionary *dict,
|
|||
int nsyms = ++DICT_LINEAR_NSYMS (dict);
|
||||
|
||||
/* Do we have enough room? If not, grow it. */
|
||||
if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict)) {
|
||||
DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2;
|
||||
DICT_LINEAR_SYMS (dict)
|
||||
= xrealloc (DICT_LINEAR_SYMS (dict),
|
||||
DICT_LINEAR_EXPANDABLE_CAPACITY (dict)
|
||||
* sizeof (struct symbol *));
|
||||
}
|
||||
if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict))
|
||||
{
|
||||
DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2;
|
||||
DICT_LINEAR_SYMS (dict)
|
||||
= xrealloc (DICT_LINEAR_SYMS (dict),
|
||||
DICT_LINEAR_EXPANDABLE_CAPACITY (dict)
|
||||
* sizeof (struct symbol *));
|
||||
}
|
||||
|
||||
DICT_LINEAR_SYM (dict, nsyms - 1) = sym;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue