Lines Matching refs:id_count
48 static ts_rsrc_id id_count; variable
160 id_count=0; in tsrm_startup()
249 *rsrc_id = TSRM_SHUFFLE_RSRC_ID(id_count++); in ts_allocate_id()
253 if (resource_types_table_size < id_count) { in ts_allocate_id()
254 …_table = (tsrm_resource_type *) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count); in ts_allocate_id()
261 resource_types_table_size = id_count; in ts_allocate_id()
273 if (p->count < id_count) { in ts_allocate_id()
276 p->storage = (void *) realloc(p->storage, sizeof(void *)*id_count); in ts_allocate_id()
277 for (j=p->count; j<id_count; j++) { in ts_allocate_id()
283 p->count = id_count; in ts_allocate_id()
302 if (id_count > 0) { in allocate_new_resource()
303 (*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count); in allocate_new_resource()
305 (*thread_resources_ptr)->count = id_count; in allocate_new_resource()
315 for (i=0; i<id_count; i++) { in allocate_new_resource()