Lines Matching refs:table
1 /* sym - symbol table routines */
46 /* addsym - add symbol and definitions to symbol table
51 int addsym( sym, str_def, int_def, table, table_size )
55 hash_table table;
59 register struct hash_entry *sym_entry = table[hash_val];
78 flexfatal( _( "symbol table memory allocation failed" ) );
80 if ( (successor = table[hash_val]) != 0 )
93 table[hash_val] = new_entry;
128 /* findsym - find symbol in symbol table */
130 struct hash_entry *findsym( sym, table, table_size )
132 hash_table table;
141 table[hashfunct( sym, table_size )];