Lines Matching defs:string
172 * int hash_function(string)
174 * Computes the hashing function on the given string.
182 hash_function(char *string)
186 while (*string) {
187 sum += *string + (*(string + 1) << 8);
188 string++;
198 * find_entry(string)
200 * Finds the entry for the given string in the hash table if present.
206 find_entry(char *string)
211 hashvalue = hash_function(string);
216 strcmp(ptr->nte_name, string) != 0)