/external/eigen/Eigen/src/Householder/ |
BlockHouseholder.h | 22 void make_block_householder_triangular_factor(TriangularFactorType& triFactor, const VectorsType& vectors, const CoeffsType& hCoeffs) 26 const Index nbVecs = vectors.cols(); 27 eigen_assert(triFactor.rows() == nbVecs && triFactor.cols() == nbVecs && vectors.rows()>=nbVecs); 31 Index rs = vectors.rows() - i; 32 Scalar Vii = vectors(i,i); 33 vectors.const_cast_derived().coeffRef(i,i) = Scalar(1); 34 triFactor.col(i).head(i).noalias() = -hCoeffs(i) * vectors.block(i, 0, rs, i).adjoint() 35 * vectors.col(i).tail(rs); 36 vectors.const_cast_derived().coeffRef(i, i) = Vii; 46 void apply_block_householder_on_the_left(MatrixType& mat, const VectorsType& vectors, const CoeffsType& hCoeffs [all...] |
/frameworks/base/tools/aapt2/integration-tests/AppOne/ |
Android.mk | 27 LOCAL_AAPT_FLAGS := --no-version-vectors
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
sections.d | 16 4 vectors 00000002 0+000 0+000 0000.... 2..0 72 Disassembly of section vectors: 74 0+000 <vectors>:
|
sections.s | 60 .sect "vectors" 71 .sblock "blksect", vectors ; set block flag on blksect and vectors
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/ |
btMinkowskiSumShape.cpp | 37 void btMinkowskiSumShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 42 supportVerticesOut[i] = localGetSupportingVertexWithoutMargin(vectors[i]);
|
btConvex2dShape.cpp | 35 void btConvex2dShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 37 m_childConvexShape->batchedUnitVectorGetSupportingVertexWithoutMargin(vectors,supportVerticesOut,numVectors);
|
btSphereShape.cpp | 27 void btSphereShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 29 (void)vectors;
|
btCylinderShape.h | 57 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const; 145 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const; 168 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btConvex2dShape.h | 40 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btConvexTriangleMeshShape.h | 46 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btMinkowskiSumShape.h | 39 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btMultiSphereShape.h | 45 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btSphereShape.h | 38 //notice that the vectors should be unit length 39 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btUniformScalingShape.h | 42 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
|
btConvexPointCloudShape.cpp | 55 void btConvexPointCloudShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 59 const btVector3& vec = vectors[j] * m_localScaling; // dot( a*c, b) = dot(a, b*c)
|
btCylinderShape.cpp | 254 void btCylinderShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 258 supportVerticesOut[i] = CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vectors[i]); 262 void btCylinderShapeZ::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 266 supportVerticesOut[i] = CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vectors[i]); 273 void btCylinderShapeX::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 277 supportVerticesOut[i] = CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vectors[i]);
|
btConeShape.cpp | 111 void btConeShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 115 const btVector3& vec = vectors[i];
|
btTriangleShape.h | 76 virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const 80 const btVector3& dir = vectors[i];
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/ |
btEigen.java | 63 public static int system(Matrix3 a, SWIGTYPE_p_btMatrix3x3 vectors, btVector3 values) { 64 return SoftbodyJNI.btEigen_system__SWIG_0(a, SWIGTYPE_p_btMatrix3x3.getCPtr(vectors), btVector3.getCPtr(values), values); 67 public static int system(Matrix3 a, SWIGTYPE_p_btMatrix3x3 vectors) { 68 return SoftbodyJNI.btEigen_system__SWIG_1(a, SWIGTYPE_p_btMatrix3x3.getCPtr(vectors));
|
/frameworks/support/samples/SupportVectorDrawable/static/ |
Android.mk | 18 --no-version-vectors
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ |
btConvexShape.java | 89 public void batchedUnitVectorGetSupportingVertexWithoutMargin(btVector3 vectors, btVector3 supportVerticesOut, int numVectors) { 90 CollisionJNI.btConvexShape_batchedUnitVectorGetSupportingVertexWithoutMargin(swigCPtr, this, btVector3.getCPtr(vectors), vectors, btVector3.getCPtr(supportVerticesOut), supportVerticesOut, numVectors);
|
/device/google/contexthub/firmware/misc/variant/common/ |
stm32f4xx.os.lkr | 22 KEEP (*(.vectors) ) ;
|
/external/skia/gm/ |
imagescalealigned.cpp | 17 const SkVector vectors[] = { { 1, 0 }, { 0, 1 } }; variable 19 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) { 22 set.fVector = vectors[i]; 23 set.fImages.push_back().reset(MakeImage(vectors[i], SK_ColorGREEN)); 25 set.fImages.push_back().reset(MakeImage(vectors[i], SK_ColorRED)); 27 set.fImages.push_back().reset(MakeImage(vectors[i], SK_ColorGREEN));
|
/frameworks/rs/api/ |
rs_vector_math.spec | 20 These functions interpret the input arguments as representation of vectors in 45 summary: Cross product of two vectors 47 Computes the cross product of two vectors. 97 summary: Dot product of two vectors 99 Computes the dot product of two vectors. 162 For vectors of size 1, returns -1.f for negative values, 0.f for null values, and 1.f for 285 For vectors of size 1, returns -1.f for negative values, 0.f for null values, and 1.f for
|
/external/mesa3d/src/mesa/main/ |
uniform_query.cpp | 480 const unsigned vectors = MAX2(1, uni->type->matrix_columns); local 491 store->element_stride - (vectors * store->vector_stride); 493 (uint8_t *) (&uni->storage[array_index * (components * vectors)].i); 496 printf("%s: %p[%d] components=%u vectors=%u count=%u vector_stride=%u " 499 vectors, count, store->vector_stride, extra_stride); 511 for (v = 0; v < vectors; v++) { 530 for (v = 0; v < vectors; v++) { 551 for (v = 0; v < vectors; v++) { 834 unsigned vectors; local 853 vectors = uni->type->matrix_columns [all...] |