HomeSort by relevance Sort by last modified time
    Searched refs:Side (Results 1 - 25 of 35) sorted by null

1 2

  /external/eigen/Eigen/src/Core/
SolveTriangular.h 19 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder>
22 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder, int OtherStorageOrder>
26 template<typename Lhs, typename Rhs, int Side>
31 RhsIsVectorAtCompileTime = (Side==OnTheLeft ? Rhs::ColsAtCompileTime : Rhs::RowsAtCompileTime)==1
42 int Side, // can be OnTheLeft/OnTheRight
44 int Unrolling = trsolve_traits<Lhs,Rhs,Side>::Unrolling,
45 int RhsVectors = trsolve_traits<Lhs,Rhs,Side>::RhsVectors
49 template<typename Lhs, typename Rhs, int Side, int Mode>
50 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,1>
71 triangular_solve_vector<LhsScalar, RhsScalar, typename Lhs::Index, Side, Mode, LhsProductTraits::NeedToConjugate
    [all...]
PermutationMatrix.h 37 * on either side.
44 template<typename PermutationType, typename MatrixType, int Side, bool Transposed=false>
46 template<typename PermutationType, typename MatrixType, int Side, bool Transposed=false>
113 /** \returns the size of a side of the respective square matrix, i.e., the number of indices */
533 template<typename PermutationType, typename MatrixType, int Side, bool Transposed>
534 struct traits<permut_matrix_product_retval<PermutationType, MatrixType, Side, Transposed> >
539 template<typename PermutationType, typename MatrixType, int Side, bool Transposed>
541 : public ReturnByValue<permut_matrix_product_retval<PermutationType, MatrixType, Side, Transposed> >
554 const int n = Side==OnTheLeft ? rows() : cols();
574 Block<Dest, Side==OnTheLeft ? 1 : Dest::RowsAtCompileTime, Side==OnTheRight ? 1 : Dest::ColsAtCompileTime>(dst, k
    [all...]
Transpositions.h 38 * In this example, we detect that the matrix appears on both side, and so the transpositions
45 template<typename TranspositionType, typename MatrixType, int Side, bool Transposed=false> struct transposition_matrix_product_retval;
354 template<typename TranspositionType, typename MatrixType, int Side, bool Transposed>
355 struct traits<transposition_matrix_product_retval<TranspositionType, MatrixType, Side, Transposed> >
360 template<typename TranspositionType, typename MatrixType, int Side, bool Transposed>
362 : public ReturnByValue<transposition_matrix_product_retval<TranspositionType, MatrixType, Side, Transposed> >
385 if(Side==OnTheLeft)
387 else if(Side==OnTheRight)
GeneralProduct.h 21 * \param LhsNested the type used to store the left-hand side
22 * \param RhsNested the type used to store the right-hand side
136 * \param Lhs the type of the left-hand side
137 * \param Rhs the type of the right-hand side
299 template<int Side, int StorageOrder, bool BlasCompatible>
320 enum { Side = Lhs::IsVectorAtCompileTime ? OnTheLeft : OnTheRight };
321 typedef typename internal::conditional<int(Side)==OnTheRight,_LhsNested,_RhsNested>::type MatrixType;
326 internal::gemv_selector<Side,(int(MatrixType::Flags)&RowMajorBit) ? RowMajor : ColMajor,
TriangularMatrix.h 18 template<int Side, typename TriangularType, typename Rhs> struct triangular_solve_retval;
328 template<int Side, typename Other>
329 inline const internal::triangular_solve_retval<Side,TriangularView, Other>
332 template<int Side, typename OtherDerived>
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 19 template<typename PermutationType, typename MatrixType, int Side, bool Transposed>
20 struct traits<permut_sparsematrix_product_retval<PermutationType, MatrixType, Side, Transposed> >
27 MoveOuter = SrcStorageOrder==RowMajor ? Side==OnTheLeft : Side==OnTheRight
35 template<typename PermutationType, typename MatrixType, int Side, bool Transposed>
37 : public ReturnByValue<permut_sparsematrix_product_retval<PermutationType, MatrixType, Side, Transposed> >
45 MoveOuter = SrcStorageOrder==RowMajor ? Side==OnTheLeft : Side==OnTheRight
64 sizes[((Side==OnTheLeft) ^ Transposed) ? jp : j] = m_matrix.innerVector(((Side==OnTheRight) ^ Transposed) ? jp : j).size()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 43 * point is on the non-normal side of the plane.
55 public static enum Side {
169 * a provided point. If the point is on the negative side of the plane the
182 * <code>whichSide</code> returns the side at which a point lies on the
188 * @return the side at which the point lies.
190 public Side whichSide(Vector3f point) {
193 return Side.Negative;
195 return Side.Positive;
197 return Side.None;
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 22 * \tparam Side either OnTheLeft (the default) or OnTheRight
59 template<typename VectorsType, typename CoeffsType, int Side>
60 struct traits<HouseholderSequence<VectorsType,CoeffsType,Side> >
66 RowsAtCompileTime = Side==OnTheLeft ? traits<VectorsType>::RowsAtCompileTime
69 MaxRowsAtCompileTime = Side==OnTheLeft ? traits<VectorsType>::MaxRowsAtCompileTime
76 template<typename VectorsType, typename CoeffsType, int Side>
112 template<typename VectorsType, typename CoeffsType, int Side> class HouseholderSequence
113 : public EigenBase<HouseholderSequence<VectorsType,CoeffsType,Side> >
124 typedef typename internal::hseq_side_dependent_impl<VectorsType,CoeffsType,Side>::EssentialVectorType
134 Side
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
ReflectionProcessor.java 65 reflectionCam.setClipPlane(reflectionClipPlane, Plane.Side.Positive);//,1
  /external/chromium_org/third_party/skia/include/core/
SkPoint.h 447 * The side of a point relative to a line. If the line is from a to b then
450 enum Side {
458 * optionally returns the side of the line that the pt falls on (looking
463 Side* side = NULL) const;
467 * optionally returns the side of the line that the pt falls on (looking
472 Side* side = NULL) const {
473 return SkScalarSqrt(this->distanceToLineBetweenSqd(a, b, side));
492 * new vector will point in direction indicated by side (whic
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingVolume.java 139 * <code>whichSide</code> returns the side on which the bounding volume
145 * @return the side on which this bounding volume lies.
147 public abstract Plane.Side whichSide(Plane plane);
BoundingSphere.java 437 * frustum) to determine which side this bound is on.
441 * @return side
443 public Plane.Side whichSide(Plane plane) {
447 return Plane.Side.Negative;
449 return Plane.Side.Positive;
451 return Plane.Side.None;
BoundingBox.java 337 * frustum) to determine which side this bound is on.
342 public Plane.Side whichSide(Plane plane) {
351 return Plane.Side.Negative;
353 return Plane.Side.Positive;
355 return Plane.Side.None;
    [all...]
Intersection.java 273 if (bbox.whichSide(p) == Plane.Side.Negative) {
  /external/skia/include/core/
SkPoint.h 447 * The side of a point relative to a line. If the line is from a to b then
450 enum Side {
458 * optionally returns the side of the line that the pt falls on (looking
463 Side* side = NULL) const;
467 * optionally returns the side of the line that the pt falls on (looking
472 Side* side = NULL) const {
473 return SkScalarSqrt(this->distanceToLineBetweenSqd(a, b, side));
492 * new vector will point in direction indicated by side (whic
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-elements-from-array-prototype-chain.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
array-elements-from-array-prototype.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
array-elements-from-object-prototype.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
  /external/v8/test/mjsunit/
array-elements-from-array-prototype-chain.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
array-elements-from-array-prototype.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
array-elements-from-object-prototype.js 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
136 // Side-effects: everything before 4 is kept intact:
164 // Side-effects: everything before 4 is kept intact:
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 383 * @param side the side the camera stands from the plane
385 public void setClipPlane(Plane clipPlane, Plane.Side side) {
387 if (side == Plane.Side.Negative) {
390 //we are on the other side of the plane no need to clip anymore.
391 if (clipPlane.whichSide(location) == side) {
998 * on the negative side of the plane is can be culled out.
1030 Plane.Side side = bound.whichSide(worldPlane[planeId]); local
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 18 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder>
19 struct triangular_solve_matrix<Scalar,Index,Side,Mode,Conjugate,TriStorageOrder,RowMajor>
28 Scalar, Index, Side==OnTheLeft?OnTheRight:OnTheLeft,
36 /* Optimized triangular solver with multiple right hand side and the triangular matrix on the left
  /external/chromium_org/third_party/skia/src/core/
SkPoint.cpp 469 Side* side) const {
476 if (NULL != side) {
480 *side = (Side) SkScalarSignAsInt(det);
  /external/skia/src/core/
SkPoint.cpp 469 Side* side) const {
476 if (NULL != side) {
480 *side = (Side) SkScalarSignAsInt(det);

Completed in 870 milliseconds

1 2