Home | History | Annotate | Download | only in ic

Lines Matching defs:cs_count

8262 	u_int	cs_count;
8284 cs_count = 0;
8374 if (begin_set[cs_count] == TRUE
8375 && end_set[cs_count] == FALSE) {
8376 cs_table[cs_count].end = downloaded;
8377 end_set[cs_count] = TRUE;
8378 cs_count++;
8383 && begin_set[cs_count] == FALSE) {
8384 cs_table[cs_count].begin = downloaded;
8385 begin_set[cs_count] = TRUE;
8393 ahd->num_critical_sections = cs_count;
8394 if (cs_count != 0) {
8396 cs_count *= sizeof(struct cs);
8397 ahd->critical_sections = malloc(cs_count, M_DEVBUF, M_NOWAIT);
8400 memcpy(ahd->critical_sections, cs_table, cs_count);