Lines Matching refs:count
69 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count);
70 int glUtilsCalcShaderSourceLen(char **strings, GLint *length, GLsizei count);
82 template <class T> void minmax(const T *indices, int count, int *min, int *max) { in minmax() argument
86 for (int i = 0; i < count; i++) { in minmax()
94 (const T *indices, int count, int *min, int *max, in minmaxExcept() argument
97 if (!shouldExclude) return minmax(indices, count, min, max); in minmaxExcept()
102 for (int i = 0; i < count; i++) { in minmaxExcept()
111 template <class T> void shiftIndices(T *indices, int count, int offset) { in shiftIndices() argument
113 for (int i = 0; i < count; i++) { in shiftIndices()
120 template <class T> void shiftIndices(const T *src, T *dst, int count, int offset) in shiftIndices() argument
122 for (int i = 0; i < count; i++) { in shiftIndices()
130 (T *indices, int count, int offset, in shiftIndicesExcept() argument
133 if (!shouldExclude) return shiftIndices(indices, count, offset); in shiftIndicesExcept()
136 for (int i = 0; i < count; i++) { in shiftIndicesExcept()
145 (const T *src, T *dst, int count, int offset, in shiftIndicesExcept() argument
148 if (!shouldExclude) return shiftIndices(src, dst, count, offset); in shiftIndicesExcept()
150 for (int i = 0; i < count; i++) { in shiftIndicesExcept()