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

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
LUDecomposition.java 60 RealMatrix getU();
FieldLUDecomposition.java 62 FieldMatrix<T> getU();
SingularValueDecomposition.java 61 RealMatrix getU();
67 * @see #getU()
SingularValueDecompositionImpl.java 157 public RealMatrix getU() throws InvalidMatrixException {
167 cachedUt = getU().transpose();
BiDiagonalTransformer.java 88 public RealMatrix getU() {
LUDecompositionImpl.java 181 public RealMatrix getU() {
  /external/llvm/lib/Support/
DataExtractor.cpp 17 static T getU(uint32_t *offset_ptr, const DataExtractor *de,
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data);
51 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data());
62 return getU<uint16_t>(offset_ptr, this, IsLittleEndian, Data.data());
72 return getU<uint32_t>(offset_ptr, this, IsLittleEndian, Data.data());
82 return getU<uint64_t>(offset_ptr, this, IsLittleEndian, Data.data());
ScaledNumber.cpp 25 auto getU = [](uint64_t N) { return N >> 32; };
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
36 Upper += getU(N) + (NewLower < Lower);
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 106 inline ImageType getU()
123 inline int getU(int y, int x)
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 106 inline ImageType getU()
123 inline int getU(int y, int x)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/realistic/
MainShader.java 197 program.setUniformf(idx + dirShadowsUvTransformOffset, tr.getU(), tr.getV(), tr.getU2() - tr.getU(), tr.getV2()
233 program.setUniformf(idx + spotShadowsUvTransformOffset, tr.getU(), tr.getV(), tr.getU2() - tr.getU(),
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 261 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
275 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
336 return Traits::getU(Base::m_matrix);
431 return Traits::getU(Base::m_matrix);
590 LDLTTraits::getU(Base::m_matrix).solveInPlace(dest);
592 LLTTraits::getU(Base::m_matrix).solveInPlace(dest);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
TiledDrawable.java 60 float u = region.getU();
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/
Glyph.java 135 public float getU () {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/
Pass2Shader.java 76 shader.set(inputID, tr.getU(), tr.getV(), tr.getU2() - tr.getU(), tr.getV2() - tr.getV());
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 123 return Traits::getU(m_matrix);
424 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
432 static inline MatrixU getU(const MatrixType& m) { return m; }
LLT.h 100 return Traits::getU(m_matrix);
366 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
376 static inline MatrixU getU(const MatrixType& m) { return m; }
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureRegion.java 130 public float getU () {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/
TextureAttribute.java 158 offsetU = region.getU();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
RegionInfluencer.java 149 this.u = region.getU();
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricStaggeredTiledMapRenderer.java 86 float u1 = region.getU();
OrthoCachedTiledMapRenderer.java 255 final float u1 = region.getU() + adjustX;
370 final float u1 = region.getU();
BatchTiledMapRenderer.java 205 final float u1 = region.getU();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
Decal.java 531 vertices[U1] = tr.getU();
537 vertices[U3] = tr.getU();
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/
BMFontUtil.java 200 + "x=" + String.format("%-5s", (int)(glyph.getU() * pageWidth)) //

Completed in 446 milliseconds

1 2