Lines Matching defs:count
42 * Given a vector [count][4] of floats, set all the [][elt] values
46 _mesa_vector4f_clean_elem( GLvector4f *vec, GLuint count, GLuint elt )
59 for (i = 0; i < count; i++)
86 STATIC_ASSERT(V4F_COUNT == offsetof(GLvector4f, count));
95 v->count = 0;
104 * \param count number of elements to allocate in vector
108 _mesa_vector4f_alloc( GLvector4f *v, GLbitfield flags, GLuint count,
113 v->storage = align_malloc( count * 4 * sizeof(GLfloat), alignment );
114 v->storage_count = count;
117 v->count = 0;
158 GLuint j, i = 0, count;
164 printf("start-count(%u)\n", v->count);
165 count = i + v->count;
168 for (; i < count; STRIDE_F(d, v->stride), i++)
173 for (; i < count; STRIDE_F(d, v->stride), i++)
183 i < count && d[j] == c[j];
188 if (i == count)