HomeSort by: relevance | last modified time | path
    Searched defs:oldtable (Results 1 - 7 of 7) sorted by relevancy

  /src/external/mpl/bind/dist/lib/isc/
ht.c 166 isc_ht_node_t **oldtable = ht->table[HT_NEXTTABLE(ht->hindex)]; local
171 while (ht->hiter < oldsize && oldtable[ht->hiter] == NULL) {
183 for (node = oldtable[ht->hiter]; node != NULL; node = nextnode) {
191 oldtable[ht->hiter] = NULL;
hashmap.c 354 hashmap_node_t *oldtable = hashmap->tables[oldidx].table; local
361 while (hashmap->hiter < oldsize && oldtable[hashmap->hiter].key == NULL)
375 node = oldtable[hashmap->hiter];
377 (void)hashmap_delete_node(hashmap, &oldtable[hashmap->hiter],
  /src/external/mpl/dhcp/bind/dist/lib/isc/
ht.c 206 isc_ht_node_t **oldtable = ht->table[HT_NEXTTABLE(ht->hindex)]; local
211 while (ht->hiter < oldsize && oldtable[ht->hiter] == NULL) {
223 for (node = oldtable[ht->hiter]; node != NULL; node = nextnode) {
231 oldtable[ht->hiter] = NULL;
  /src/external/mpl/bind/dist/lib/dns/
rbt.c 1521 dns_rbtnode_t **oldtable = local
1527 while (rbt->hiter < oldsize && oldtable[rbt->hiter] == NULL) {
1539 for (node = oldtable[rbt->hiter]; node != NULL; node = nextnode) {
1547 oldtable[rbt->hiter] = NULL;
  /src/lib/libc/stdio/
vfwprintf.c 1915 enum typeid *const oldtable = *typetable; local
1927 memcpy(newtable, oldtable, oldsize * sizeof(*newtable));
1929 newtable = oldtable;
1933 free(oldtable);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rbt.c 2403 dns_rbtnode_t **oldtable; local
2411 oldtable = rbt->hashtable;
2422 for (node = oldtable[i]; node != NULL; node = nextnode) {
2430 isc_mem_put(rbt->mctx, oldtable, oldsize * sizeof(dns_rbtnode_t *));
rbtdb.c 10139 rbtdb_glue_table_node_t **oldtable; local
10143 oldtable = version->glue_table;
10155 for (gluenode = oldtable[i]; gluenode != NULL;
10167 isc_mem_put(version->rbtdb->common.mctx, oldtable,

Completed in 33 milliseconds