Home | History | Annotate | Download | only in gas

Lines Matching full:hash

0 /* hash.h -- header file for gas hash table routines
26 /* Set the size of the hash table used. */
30 /* Create a hash table. This return a control block. */
35 /* Delete a hash table, freeing all allocated memory. */
39 /* Insert an entry into a hash table. This returns NULL on success.
42 hash table. */
47 /* Insert or replace an entry in a hash table. This returns NULL on
54 /* Replace an existing entry in a hash table. This returns the old
55 value stored for the entry. If the entry is not found in the hash
61 /* Find an entry in a hash table, returning its value. Returns NULL
71 /* Delete an entry from a hash table. This returns the value stored
76 /* Traverse a hash table. Call the function on every entry in the
77 hash table. */
82 /* Print hash table statistics on the specified file. NAME is the
83 name of the hash table, used for printing a header. */