Lines Matching refs:id_count
52 static ts_rsrc_id id_count; variable
141 id_count=0; in tsrm_startup()
253 if (p->count < id_count) { in tsrm_update_active_threads()
256 p->storage = (void *) realloc(p->storage, sizeof(void *)*id_count); in tsrm_update_active_threads()
257 for (j=p->count; j<id_count; j++) { in tsrm_update_active_threads()
267 p->count = id_count; in tsrm_update_active_threads()
283 *rsrc_id = TSRM_SHUFFLE_RSRC_ID(id_count++); in ts_allocate_id()
287 if (resource_types_table_size < id_count) { in ts_allocate_id()
289 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_id()
297 resource_types_table_size = id_count; in ts_allocate_id()
329 *rsrc_id = TSRM_SHUFFLE_RSRC_ID(id_count++); in ts_allocate_fast_id()
345 if (resource_types_table_size < id_count) { in ts_allocate_fast_id()
347 _tmp = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_fast_id()
355 resource_types_table_size = id_count; in ts_allocate_fast_id()
378 if (id_count > 0) { in allocate_new_resource()
379 (*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count); in allocate_new_resource()
381 (*thread_resources_ptr)->count = id_count; in allocate_new_resource()
392 for (i=0; i<id_count; i++) { in allocate_new_resource()