Searched refs:HASH_SIZE (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/gcc/
H A Dgen-protos.c31 #define HASH_SIZE 2503 /* a prime */ macro
32 int hash_tab[HASH_SIZE];
42 i = hashstr (fname, strlen (fname)) % HASH_SIZE;
49 i = (i+1) % HASH_SIZE;
181 fprintf (outf, "#define HASH_SIZE %d\n", HASH_SIZE);
182 fprintf (outf, "short hash_tab[HASH_SIZE] = {\n");
183 for (i = 0; i < HASH_SIZE; i++)
H A Dprint-tree.c36 #define HASH_SIZE 37 macro
53 table = XCNEWVEC (struct bucket *, HASH_SIZE);
212 hash = ((unsigned long) node) % HASH_SIZE;
H A Dcse.c467 #define HASH_SIZE (1 << HASH_SHIFT) macro
468 #define HASH_MASK (HASH_SIZE - 1)
529 static struct table_elt *table[HASH_SIZE];
950 for (i = 0; i < HASH_SIZE; i++)
1363 for (hash = 0; hash < HASH_SIZE; hash++)
1754 for (i = 0; i < HASH_SIZE; i++)
1853 for (hash = 0; hash < HASH_SIZE; hash++)
1898 for (i = 0; i < HASH_SIZE; i++)
1942 for (i = 0; i < HASH_SIZE; i++)
1962 for (i = 0; i < HASH_SIZE;
[all...]
H A Dfix-header.c401 int i = hashstr (name, name_length) % HASH_SIZE;
412 i = (i+1) % HASH_SIZE;
/freebsd-10.0-release/contrib/binutils/opcodes/
H A Dsparc-dis.c43 #define HASH_SIZE 256 macro
56 static sparc_opcode_hash *opcode_hash_table[HASH_SIZE];
400 int hash_count[HASH_SIZE];
406 memset (hash_table, 0, HASH_SIZE * sizeof (hash_table[0]));
407 memset (hash_count, 0, HASH_SIZE * sizeof (hash_count[0]));
427 for (i = 0; i < HASH_SIZE; ++i)
437 min_count, max_count, (double) total / HASH_SIZE);

Completed in 181 milliseconds