Home
last modified time | relevance | path

Searched refs:htable (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/newlib/libc/search/
Dhcreate_r.c93 if (htab->htable != NULL) { in hcreate_r()
115 htab->htable = malloc(htab->htablesize * sizeof htab->htable[0]); in hcreate_r()
116 if (htab->htable == NULL) { in hcreate_r()
123 SLIST_INIT(&(htab->htable[idx])); in hcreate_r()
135 if (htab->htable == NULL) in hdestroy_r()
140 while (!SLIST_EMPTY(&(htab->htable[idx]))) { in hdestroy_r()
141 ie = SLIST_FIRST(&(htab->htable[idx])); in hdestroy_r()
142 SLIST_REMOVE_HEAD(&(htab->htable[idx]), link); in hdestroy_r()
148 free(htab->htable); in hdestroy_r()
149 htab->htable = NULL; in hdestroy_r()
[all …]
/picolibc-latest/newlib/libc/include/
Dsearch.h69 struct internal_head *htable; member