Home
last modified time | relevance | path

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

/dflybsd-src/contrib/gcc-4.7/libobjc/
H A Dhash.c58 cache->node_table in objc_hash_new()
60 assert (cache->node_table); in objc_hash_new()
91 if ((node = cache->node_table[i])) in objc_hash_delete()
105 objc_free(cache->node_table); in objc_hash_delete()
121 node->next = (*cachep)->node_table[indx]; in objc_hash_add()
126 node_ptr node1 = (*cachep)->node_table[indx]; in objc_hash_add()
136 (*cachep)->node_table[indx] = node; in objc_hash_add()
174 node_ptr node = cache->node_table[indx]; in objc_hash_remove()
184 cache->node_table[indx] = node->next; in objc_hash_remove()
240 if (cache->node_table[cache->last_bucket]) in objc_hash_next()
[all …]
/dflybsd-src/contrib/gcc-4.7/libobjc/objc-private/
H A Dhash.h82 node_ptr *node_table; /* Pointer to an array of hash nodes. */ member