Lines Matching defs:count
47 struct drm_clip_rect *boxes, int count)
53 BEGIN_RING((count < 3 ? count : 3) * 5 + 2);
55 if (count >= 1) {
64 if (count >= 2) {
73 if (count >= 3) {
697 int start, int end, int count)
709 DRM_DEBUG("indices: s=%d e=%d c=%d\n", start, end, count);
732 (count << 16)));
734 if (count & 0x1) {
894 int count, x, y;
901 count = depth->n;
902 if (count > 4096 || count <= 0)
923 for (i = 0; i < count; i++, x++) {
948 for (i = 0; i < count; i++, x++) {
979 int count, *x, *y;
986 count = depth->n;
987 if (count > 4096 || count <= 0)
990 xbuf_size = count * sizeof(*x);
991 ybuf_size = count * sizeof(*y);
1018 for (i = 0; i < count; i++) {
1043 for (i = 0; i < count; i++) {
1076 int count, x, y;
1080 count = depth->n;
1081 if (count > 4096 || count <= 0)
1106 OUT_RING((count << 16) | 1);
1117 int count, *x, *y;
1122 count = depth->n;
1123 if (count > 4096 || count <= 0)
1126 if (count > dev_priv->depth_pitch)
1127 count = dev_priv->depth_pitch;
1129 xbuf_size = count * sizeof(*x);
1130 ybuf_size = count * sizeof(*y);
1150 for (i = 0; i < count; i++) {
1326 DRM_DEBUG("pid=%d index=%d count=%d discard=%d\n",
1327 task_pid_nr(current), vertex->idx, vertex->count, vertex->discard);
1356 buf->used = vertex->count;
1373 int count;
1409 count = (elts->end - elts->start) / sizeof(u16);
1425 r128_cce_dispatch_indices(dev, buf, elts->start, elts->end, count);