/external/deqp-deps/glslang/Test/ |
D | spv.400.frag | 200 dmat2 dmat2v = outerProduct(dvec2v, dvec2v); 201 dmat3 dmat3v = outerProduct(dvec3v, dvec3v); 202 dmat4 dmat4v = outerProduct(dvec4v, dvec4v); 203 dmat2x3 dmat2x3v = outerProduct(dvec3v, dvec2v); 204 dmat3x2 dmat3x2v = outerProduct(dvec2v, dvec3v); 205 dmat2x4 dmat2x4v = outerProduct(dvec4v, dvec2v); 206 dmat4x2 dmat4x2v = outerProduct(dvec2v, dvec4v); 207 dmat3x4 dmat3x4v = outerProduct(dvec4v, dvec3v); 208 dmat4x3 dmat4x3v = outerProduct(dvec3v, dvec4v);
|
D | 400.geom | 293 dmat2 dmat2v = outerProduct(dvec2v, dvec2v); 294 dmat3 dmat3v = outerProduct(dvec3v, dvec3v); 295 dmat4 dmat4v = outerProduct(dvec4v, dvec4v); 296 dmat2x3 dmat2x3v = outerProduct(dvec3v, dvec2v); 297 dmat3x2 dmat3x2v = outerProduct(dvec2v, dvec3v); 298 dmat2x4 dmat2x4v = outerProduct(dvec4v, dvec2v); 299 dmat4x2 dmat4x2v = outerProduct(dvec2v, dvec4v); 300 dmat3x4 dmat3x4v = outerProduct(dvec4v, dvec3v); 301 dmat4x3 dmat4x3v = outerProduct(dvec3v, dvec4v);
|
D | spv.matrix2.frag | 21 mat3x4 m34 = outerProduct(v, u);
|
D | matrix2.frag | 21 mat3x4 m34 = outerProduct(v, u);
|
D | matrix.frag | 38 mat3x4 m34 = outerProduct(v, u);
|
D | 300.frag | 145 mat3x2 m32 = outerProduct(vec2(2,3), vec3(5,7,11));// rows: (10, 14, 22), (15, 21, 33)
|
D | 300.vert | 47 mat3x2 op = outerProduct(v2, v3);
|
D | spv.float64.frag | 231 f64m1 = outerProduct(f64v1, f64v2);
|
D | spv.float32.frag | 236 f32m1 = outerProduct(f32v1, f32v2);
|
D | spv.float16.frag | 265 f16m1 = outerProduct(f16v1, f16v2);
|
/external/skia/src/sksl/ |
D | sksl.inc | 192 float2x2 outerProduct(float2 c, float2 r); 193 float3x3 outerProduct(float3 c, float3 r); 194 float4x3 outerProduct(float4 c, float4 r); 195 float2x3 outerProduct(float3 c, float2 r); 196 float3x2 outerProduct(float2 c, float3 r); 197 float2x4 outerProduct(float4 c, float2 r); 198 float4x2 outerProduct(float2 c, float4 r); 199 float3x4 outerProduct(float4 c, float3 r); 200 float4x3 outerProduct(float3 c, float4 r); 201 half2x2 outerProduct(half2 c, half2 r); [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | FieldVector.java | 247 FieldMatrix<T> outerProduct(FieldVector<T> v) in outerProduct() method 256 FieldMatrix<T> outerProduct(T[] v) in outerProduct() method
|
D | SparseFieldVector.java | 407 public FieldMatrix<T> outerProduct(SparseFieldVector<T> v) in outerProduct() method in SparseFieldVector 424 public FieldMatrix<T> outerProduct(T[] v) throws IllegalArgumentException { in outerProduct() method in SparseFieldVector 440 public FieldMatrix<T> outerProduct(FieldVector<T> v) in outerProduct() method in SparseFieldVector 443 return outerProduct((SparseFieldVector<T>)v); in outerProduct() 445 return outerProduct(v.toArray()); in outerProduct()
|
D | RealVector.java | 888 RealMatrix outerProduct(RealVector v); in outerProduct() method 897 RealMatrix outerProduct(double[] v); in outerProduct() method
|
D | ArrayFieldVector.java | 611 public FieldMatrix<T> outerProduct(FieldVector<T> v) in outerProduct() method in ArrayFieldVector 614 return outerProduct((ArrayFieldVector<T>) v); in outerProduct() 634 public FieldMatrix<T> outerProduct(ArrayFieldVector<T> v) in outerProduct() method in ArrayFieldVector 636 return outerProduct(v.data); in outerProduct() 640 public FieldMatrix<T> outerProduct(T[] v) in outerProduct() method in ArrayFieldVector
|
D | ArrayRealVector.java | 939 public RealMatrix outerProduct(RealVector v) in outerProduct() method in ArrayRealVector 942 return outerProduct((ArrayRealVector) v); in outerProduct() 962 public RealMatrix outerProduct(ArrayRealVector v) in outerProduct() method in ArrayRealVector 964 return outerProduct(v.data); in outerProduct() 969 public RealMatrix outerProduct(double[] v) in outerProduct() method in ArrayRealVector
|
D | AbstractRealVector.java | 723 public RealMatrix outerProduct(RealVector v) throws IllegalArgumentException { in outerProduct() method in AbstractRealVector 746 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException { in outerProduct() method in AbstractRealVector 747 return outerProduct(new ArrayRealVector(v, false)); in outerProduct()
|
D | OpenMapRealVector.java | 612 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException {
|
/external/skqp/src/sksl/ |
D | sksl.inc | 148 float2x2 outerProduct(float2 c, float2 r); 149 float3x3 outerProduct(float3 c, float3 r); 150 float4x3 outerProduct(float4 c, float4 r); 151 float2x3 outerProduct(float3 c, float2 r); 152 float3x2 outerProduct(float2 c, float3 r); 153 float2x4 outerProduct(float4 c, float2 r); 154 float4x2 outerProduct(float2 c, float4 r); 155 float3x4 outerProduct(float4 c, float3 r); 156 float4x3 outerProduct(float3 c, float4 r);
|
/external/deqp/doc/testspecs/GLES3/ |
D | performance.shaders.operator.txt | 35 - matrix functions that also deal with non-matrices (e.g. outerProduct)
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cGPUShaderFP64Tests.cpp | 12262 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& … 12569 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& … in outerProduct() function 14395 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14399 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14403 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14407 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14411 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14415 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14419 function, "outerProduct", Math::outerProduct); in getFunctionObject() 14423 function, "outerProduct", Math::outerProduct); in getFunctionObject() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderMatrixTests.cpp | 638 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct() function 949 evalCtx.color.xyz() = reduceToVec3(outerProduct(in0, in1)); in evaluate()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderMatrixTests.cpp | 633 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct() function 944 evalCtx.color.xyz() = reduceToVec3(outerProduct(in0, in1)); in evaluate()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 3729 ExprP<Matrix<float, Rows, Cols> > outerProduct (const ExprP<Vector<float, Rows> >& left, in outerProduct() function 3865 ExprP<Mat2> t3 = outerProduct(t2, matC); in doExpand()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 4633 ExprP<Matrix<T, Rows, Cols> > outerProduct (const ExprP<Vector<T, Rows> >& left, in outerProduct() function 4842 ExprP<Mat2> t3 = outerProduct(t2, matC); in doExpand() 4943 ExprP<Mat2_16b> t3 = outerProduct(t2, matC); in doExpand()
|