Home
last modified time | relevance | path

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

/titanic_41/usr/src/tools/ctf/cvt/
H A Dhash.c153 int cbrc; in hash_find_list_cb() local
157 if ((cbrc = hd->hd_fun(node, hd->hd_private)) < 0) in hash_find_list_cb()
158 return (cbrc); in hash_find_list_cb()
159 rc += cbrc; in hash_find_list_cb()
214 int cbrc; in hash_iter() local
219 if ((cbrc = list_iter(hash->h_buckets[i], fun, in hash_iter()
221 return (cbrc); in hash_iter()
222 cumrc += cbrc; in hash_iter()
/titanic_41/usr/src/tools/ctf/common/
H A Dlist.c123 int cbrc; in list_iter() local
127 if ((cbrc = func(list->l_data, private)) < 0) in list_iter()
128 return (cbrc); in list_iter()
129 cumrc += cbrc; in list_iter()