Searched refs:aux (Results 1 – 1 of 1) sorted by relevance
166 struct item *aux; in is_defined_config() local168 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { in is_defined_config()169 if (aux->hash == hash && aux->len == len && in is_defined_config()170 memcmp(aux->name, name, len) == 0) in is_defined_config()181 struct item *aux = malloc(sizeof(*aux) + len); in define_config() local183 if (!aux) { in define_config()187 memcpy(aux->name, name, len); in define_config()188 aux->len = len; in define_config()189 aux->hash = hash; in define_config()190 aux->next = hashtab[hash % HASHSZ]; in define_config()[all …]