Home
last modified time | relevance | path

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

/picolibc-3.5.0-3.4.0/newlib/libc/search/
Dhcreate_r.c95 if (htab->htable != NULL) { in hcreate_r()
117 htab->htable = malloc(htab->htablesize * sizeof htab->htable[0]); in hcreate_r()
118 if (htab->htable == NULL) { in hcreate_r()
125 SLIST_INIT(&(htab->htable[idx])); in hcreate_r()
137 if (htab->htable == NULL) in hdestroy_r()
142 while (!SLIST_EMPTY(&(htab->htable[idx]))) { in hdestroy_r()
143 ie = SLIST_FIRST(&(htab->htable[idx])); in hdestroy_r()
144 SLIST_REMOVE_HEAD(&(htab->htable[idx]), link); in hdestroy_r()
150 free(htab->htable); in hdestroy_r()
151 htab->htable = NULL; in hdestroy_r()
[all …]
/picolibc-3.5.0-3.4.0/newlib/libc/include/
Dsearch.h69 struct internal_head *htable; member