Searched refs:g_consumer_capacity (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtrace_jni.c113 static size_t g_consumer_capacity = 0; variable
183 if ((handle >= 0) && (handle < g_consumer_capacity)) {
245 g_consumer_capacity = INITIAL_CAPACITY;
251 } else if (g_consumer_count >= g_consumer_capacity) {
255 if (g_consumer_capacity <= g_max_capacity_increment) {
256 new_capacity = (g_consumer_capacity * 2);
258 new_capacity = (g_consumer_capacity +
276 bzero(g_consumer_table + g_consumer_capacity, ((new_capacity -
277 g_consumer_capacity) * sizeof (dtj_consumer_t *)));
278 g_consumer_capacity
[all...]

Completed in 16 milliseconds