Searched refs:hash_table_size (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/contrib/groff/src/utils/indxbib/
H A Dindxbib.cpp78 int hash_table_size = DEFAULT_HASH_TABLE_SIZE; variable
147 check_integer_arg('h', optarg, 1, &hash_table_size);
148 if (!is_prime(hash_table_size)) {
149 while (!is_prime(++hash_table_size))
151 warning("%1 not prime: using %2 instead", optarg, hash_table_size);
385 common_words_table = new word_list * [hash_table_size];
386 for (int i = 0; i < hash_table_size; i++)
402 int h = hash(key_buffer, key_len) % hash_table_size;
671 hash_table = new table_entry[hash_table_size];
672 for (int i = 0; i < hash_table_size;
[all...]
/freebsd-10.0-release/contrib/groff/src/preproc/refer/
H A Drefer.cpp92 static int hash_table_size; variable
703 hash_table_size = 17;
704 for (int i = 0; i < hash_table_size; i++)
712 for (ptr = reference_hash_table + (h % hash_table_size);
715 ? (ptr = reference_hash_table + hash_table_size - 1)
731 if (nreferences*2 >= hash_table_size) {
734 int old_size = hash_table_size;
735 hash_table_size = next_size(hash_table_size);
736 reference_hash_table = new reference*[hash_table_size];
[all...]
/freebsd-10.0-release/contrib/binutils/opcodes/
H A Dcgen-opc.c181 if (search->current_hash == search->table->hash_table_size)
197 while (search->current_hash < search->table->hash_table_size)
224 return hash % kt->hash_table_size;
232 return value % kt->hash_table_size;
247 kt->hash_table_size = size;
/freebsd-10.0-release/contrib/binutils/ld/
H A Dld.h294 bfd_size_type hash_table_size; member in struct:__anon615
H A Dlexsup.c1424 if (config.hash_table_size == 0)
1425 config.hash_table_size = 1021;
1434 config.hash_table_size = new_size;
H A Dldmain.c289 if (config.hash_table_size != 0)
290 bfd_hash_set_default_size (config.hash_table_size);
/freebsd-10.0-release/contrib/binutils/include/opcode/
H A Dcgen.h534 unsigned int hash_table_size;
526 unsigned int hash_table_size; member in struct:cgen_keyword
/freebsd-10.0-release/contrib/gcc/
H A Dgcse.c1450 int hash_table_size)
1458 return hash % hash_table_size;
1469 hash_set (int regno, int hash_table_size)
1474 return hash % hash_table_size;
1440 hash_expr(rtx x, enum machine_mode mode, int *do_not_record_p, int hash_table_size) argument
1460 hash_set(int regno, int hash_table_size) argument

Completed in 203 milliseconds