Lines Matching refs:T
82 template <class T> void minmax(const T *indices, int count, int *min, int *max) { in minmax()
85 const T *ptr = indices; in minmax()
93 template <class T> void minmaxExcept in minmaxExcept()
94 (const T *indices, int count, int *min, int *max, in minmaxExcept()
95 bool shouldExclude, T whatExclude) { in minmaxExcept()
101 const T *ptr = indices; in minmaxExcept()
111 template <class T> void shiftIndices(T *indices, int count, int offset) { in shiftIndices()
112 T *ptr = indices; in shiftIndices()
120 template <class T> void shiftIndices(const T *src, T *dst, int count, int offset) in shiftIndices()
129 template <class T> void shiftIndicesExcept in shiftIndicesExcept()
130 (T *indices, int count, int offset, in shiftIndicesExcept()
131 bool shouldExclude, T whatExclude) { in shiftIndicesExcept()
135 T *ptr = indices; in shiftIndicesExcept()
144 template <class T> void shiftIndicesExcept in shiftIndicesExcept()
145 (const T *src, T *dst, int count, int offset, in shiftIndicesExcept()
146 bool shouldExclude, T whatExclude) { in shiftIndicesExcept()
161 template<class T> T primitiveRestartIndex() { in primitiveRestartIndex()