/src/lib/libc/stdlib/ |
hcreate.c | 86 static struct hsearch_data htable; variable in typeref:struct:hsearch_data 91 _DIAGASSERT(htable.table == NULL); 94 if (htable.table != NULL) { 98 return hcreate_r(nel, &htable); 143 _DIAGASSERT(htable.table != NULL); 144 hdestroy1_r(&htable, freekey, freedata); 193 _DIAGASSERT(htable.table != NULL); 194 (void)hsearch_r(item, action, &ep, &htable);
|
/src/usr.bin/du/ |
du.c | 286 } *htable; local in function:linkchk 310 if (!htable) 318 ohtable = htable; 319 htable = calloc(htmask+1, sizeof(*htable)); 320 if (!htable) 342 while (htable[h].ino || htable[h].dev) { 343 if ((htable[h].ino == ino) && (htable[h].dev == dev) [all...] |
/src/usr.sbin/makefs/ |
walk.c | 767 } *htable; local in function:link_check 786 if (!htable) 794 ohtable = htable; 795 htable = ecalloc(htmask+1, sizeof(*htable)); 814 while (htable[h].data) { 815 if ((htable[h].data->st.st_ino == entry->st.st_ino) && 816 (htable[h].data->st.st_dev == entry->st.st_dev)) { 817 return htable[h].data; 823 htable[h].data = entry [all...] |
/src/lib/libintl/ |
gettext.c | 481 insert_to_hash(uint32_t *htable, uint32_t hsize, const char *str, uint32_t ref) 489 while (htable[idx]) 492 htable[idx] = ref; 579 const uint32_t *htable; local in function:mapit 693 /* allocate htable, and convert it to the host order. */ 702 htable = (const uint32_t *)(base+flip(mo->mo_hoffset, magic)); 704 mohandle->mo.mo_htable[i] = flip(htable[i], magic);
|