Lines Matching refs:Stride
72 static constexpr size_t Stride(int count) {
79 return Rules140<BaseType, RowsOrVecLength>::Stride(1);
82 // Stride doesn't matter for a non-array.
107 static constexpr size_t Stride(int count) {
115 return Rules430<BaseType, RowsOrVecLength>::Stride(1);
118 // Stride doesn't matter for a non-array.
131 static constexpr size_t Stride(int count) {
138 return RulesMetal<BaseType, RowsOrVecLength>::Stride(1);
141 // Stride doesn't matter for a non-array.
175 size_t stride = Rules<UniformType, RowsOrVecLength, Cols>::Stride(n);
196 // Stride() will give us the stride of each column, so mul by 3 to get matrix stride.
197 size_t stride = 3 * Rules<UniformType, 3, 3>::Stride(1);