Home | History | Annotate | Download | only in dev

Lines Matching defs:count

67 	u_int i, start, count;
71 count = p->count;
72 if (start >= cmsize || count > cmsize - start)
74 if (!useracc(p->red, count, B_WRITE) ||
75 !useracc(p->green, count, B_WRITE) ||
76 !useracc(p->blue, count, B_WRITE))
78 for (cp = &cm->cm_map[start][0], i = 0; i < count; cp += 3, i++) {
92 u_int i, start, count;
96 count = p->count;
97 if (start >= cmsize || count > cmsize - start)
99 if (!useracc(p->red, count, B_READ) ||
100 !useracc(p->green, count, B_READ) ||
101 !useracc(p->blue, count, B_READ))
103 for (cp = &cm->cm_map[start][0], i = 0; i < count; cp += 3, i++) {