HomeSort by relevance Sort by last modified time
    Searched refs:normalized (Results 226 - 250 of 520) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/Eigen/src/Core/
Dot.h 139 MatrixBase<Derived>::normalized() const function in class:Eigen::MatrixBase
151 * \sa norm(), normalized()
VectorwiseOp.h 535 /** \returns an expression where each column of row of the referenced matrix are normalized.
537 * \sa MatrixBase::normalized(), normalize()
542 normalized() const { return m_matrix.cwiseQuotient(extendedToOpposite(this->norm())); } function in class:Eigen::VectorwiseOp
546 * \sa MatrixBase::normalize(), normalized()
549 m_matrix = this->normalized();
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 54 * \warning the vector normal is assumed to be normalized.
65 * \warning the vector normal is assumed to be normalized.
92 result.normal() = (p2 - p0).cross(p1 - p0).normalized();
144 * \warning the vector normal is assumed to be normalized.
172 // since the line equations ax+by=c are normalized with a^2+b^2=1, the following tests
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 65 * \warning the vector normal is assumed to be normalized.
76 * \warning the vector normal is assumed to be normalized.
103 result.normal() = (p2 - p0).cross(p1 - p0).normalized();
155 * \warning the vector normal is assumed to be normalized.
184 // since the line equations ax+by=c are normalized with a^2+b^2=1, the following tests
OrthoMethods.h 196 { return VectorType(-numext::conj(src.y()), numext::conj(src.x())).normalized(); }
204 * then the returned vector is a counter clock wise rotation of \c *this, i.e., (-y,x).normalized().
ParametrizedLine.h 56 * \warning the vector direction is assumed to be normalized.
66 { return ParametrizedLine(p0, (p1-p0).normalized()); }
Quaternion.h 122 * \sa normalized(), MatrixBase::normalize() */
124 /** \returns a normalized copy of \c *this
125 * \sa normalize(), MatrixBase::normalized() */
126 inline Quaternion<Scalar> normalized() const { return Quaternion<Scalar>(coeffs().normalized()); } function in class:Eigen::QuaternionBase
206 * \warning Operations interpreting the quaternion as rotation have undefined behavior if the quaternion is not normalized.
521 * be normalized, otherwise the result is undefined.
566 * Note that the two input vectors do \b not have to be normalized, and
575 Vector3 v0 = a.normalized();
576 Vector3 v1 = b.normalized();
    [all...]
  /external/expat/lib/
xmltok.h 122 char normalized; member in struct:__anon5076
  /external/icu/icu4c/source/i18n/unicode/
timezone.h 328 * Returns the canonical system timezone ID or the normalized
332 * or the custom time zone ID in normalized format.
344 * Returns the canonical system time zone ID or the normalized
348 * or the custom time zone ID in normalized format.
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state_inlines.h 404 if (desc->channel[i].normalized) {
  /external/mesa3d/src/mesa/main/
varray.h 151 GLboolean normalized, GLsizei stride,
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lattice_neon.S 13 @ Contains a function for the core loop in the normalized lattice MA
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 133 // normalized between 0.0 and 1.0. If this region exceeds the input frame
138 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
147 // normalized between 0.0 and 1.0. If this region exceeds the output frame
152 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
255 // normalize: True, if not float values should be normalized to the range
413 bool normalized; member in struct:android::filterfw::ShaderProgram::VertexAttrib
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES20.spec 142 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
143 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr )
  /frameworks/rs/driver/
rsdMeshObj.cpp 113 mAttribs[userNum].normalized = f->mHal.state.dataType != RS_TYPE_FLOAT_32;
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLEScontext.h 201 virtual void setupArr(const GLvoid* arr,GLenum arrayType,GLenum dataType,GLint size,GLsizei stride, GLboolean normalized, int pointsIndex = -1) = 0 ;
  /external/deqp/framework/platform/null/
tcuNullRenderContextFuncs.inl 1308 GLW_APICALL void GLW_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* pointer)
1313 DE_UNREF(normalized);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
timezone.cpp     [all...]
  /external/icu/icu4c/source/i18n/
timezone.cpp     [all...]
  /device/generic/goldfish/opengl/system/GLESv2_enc/
gl2_entry.cpp 149 void glVertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
210 void glVertexAttribPointerData(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void* data, GLuint datalen);
211 void glVertexAttribPointerOffset(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint offset);
    [all...]
  /external/chromium_org/extensions/renderer/resources/
schema_utils.js 102 // arguments against that signature. Returns a 'normalized' arguments list
  /external/chromium_org/v8/test/mjsunit/
in.js 96 // Check dictionary ("normalized") objects
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 153 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride) = 0;
175 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride);
  /external/eigen/test/
main.h 348 m = VectorType::Random(rows).normalized() * VectorType::Random(cols).normalized().transpose();

Completed in 1096 milliseconds

1 2 3 4 5 6 7 8 91011>>