Searched refs:aux (Results 1 – 1 of 1) sorted by relevance
186 struct item *aux; in is_defined_config() local188 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { in is_defined_config()189 if (aux->hash == hash && aux->len == len && in is_defined_config()190 memcmp(aux->name, name, len) == 0) in is_defined_config()201 struct item *aux = malloc(sizeof(*aux) + len); in define_config() local203 if (!aux) { in define_config()207 memcpy(aux->name, name, len); in define_config()208 aux->len = len; in define_config()209 aux->hash = hash; in define_config()210 aux->next = hashtab[hash % HASHSZ]; in define_config()[all …]
Completed in 5 milliseconds