Lines Matching defs:stride
36 // For example, a width of 4, offset of 3, and stride of -1 would put the vector here.
42 var stride = function(v, m, width, offset, colStride) {
168 var m = stride([sx, sy], identityN(3), 3, 0, 1);
169 return stride([px-sx*px, py-sy*py], m, 3, 2, 0);
175 var m = stride([kx, ky], identityN(3), 3, 1, -1);
176 return stride([-kx*px, -ky*py], m, 3, 2, 0);
180 return stride(arguments, identityN(3), 3, 2, 0);
237 return stride(vec, identityN(4), 4, 3, 0);
241 return stride(vec, identityN(4), 4, 0, 1);
277 stride(s, m, 4, 0, 0);
278 stride(CanvasKit.Vector.cross(s, f), m, 4, 1, 0);
279 stride(CanvasKit.Vector.mulScalar(f, -1), m, 4, 2, 0);
280 stride(eyeVec, m, 4, 3, 0);