Home | History | Annotate | Download | only in ic

Lines Matching defs:cs_count

6285 	u_int	cs_count;
6297 cs_count = 0;
6337 if (begin_set[cs_count] == TRUE
6338 && end_set[cs_count] == FALSE) {
6339 cs_table[cs_count].end = downloaded;
6340 end_set[cs_count] = TRUE;
6341 cs_count++;
6346 && begin_set[cs_count] == FALSE) {
6347 cs_table[cs_count].begin = downloaded;
6348 begin_set[cs_count] = TRUE;
6356 ahc->num_critical_sections = cs_count;
6357 if (cs_count != 0) {
6359 cs_count *= sizeof(struct cs);
6360 ahc->critical_sections = malloc(cs_count, M_DEVBUF, M_WAITOK);
6361 memcpy(ahc->critical_sections, cs_table, cs_count);