HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 176 - 200 of 720) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/opengl/libagl/
Android.mk 20 matrix.cpp.arm \
  /external/freetype/src/base/
ftglyph.c 217 const FT_Matrix* matrix,
223 if ( matrix )
224 FT_Outline_Transform( &glyph->outline, matrix );
422 FT_Matrix* matrix,
437 clazz->glyph_transform( glyph, matrix, delta );
440 if ( matrix )
441 FT_Vector_Transform( &glyph->advance, matrix );
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/icons/
wpa_gui.svg 155 gradientTransform="matrix(2.7837903e-8,-1,0.99999999,-2.1864248e-6,-32.000004,164.7061)" />
165 gradientTransform="matrix(3.1472435e-6,1.0227273,-0.87499999,-9.5061964e-8,94.067865,-4.7272712)" />
175 gradientTransform="matrix(0,0.83333324,-1.6666667,2.518705e-6,59.378243,-35.333302)" />
185 gradientTransform="matrix(1.1333333,5.1768857e-8,5.2556881e-6,1.1666667,-8.6091298,-10.332226)" />
242 transform="matrix(-0.16680323,0.53082142,-0.53082142,-0.16680323,103.31027,53.117897)"
247 transform="matrix(1.4851301,0,0,1.4851301,16.475837,-23.948973)"
252 transform="matrix(-0.35033273,1.1148712,-1.1148712,-0.35033273,146.5624,46.88078)"
  /frameworks/base/libs/rs/
rsProgramVertex.cpp 58 LOGV("Matrix %s, %p", txt, f);
212 Matrix mvp;
214 Matrix t;
309 Matrix mvp;
310 mvp.loadMultiply((Matrix *)&f[RS_PROGRAM_VERTEX_MODELVIEW_OFFSET],
311 (Matrix *)&f[RS_PROGRAM_VERTEX_PROJECTION_OFFSET]);
390 Matrix m;
  /frameworks/base/core/java/android/hardware/
SensorManager.java     [all...]
  /development/samples/Compass/src/com/example/android/compass/
CompassActivity.java 110 * All the magic happens here. The rotation matrix mR reported by
111 * SensorManager.getRotationMatrix() is a 4x4 row-major matrix.
113 * simply calculated by taking the matrix' transpose. However, since
114 * glMultMatrixf() expects a column-major matrix, we can use mR
130 * Set our projection matrix. This doesn't have to be done
  /external/srec/srec/clib/
jacobi.c 46 void Jacobi(double **matrix, int dim, double *egval, double **egvec)
48 // Compute all eigenvalues and eigenvectors of the real symmetric matrix
60 ASSERT(matrix);
74 a[i][j] = (float) matrix[i][j];
77 /* initialize v to identity matrix, d and b to the diagonal of mat */
  /external/skia/src/core/
SkPath.cpp 613 SkMatrix matrix; local
615 matrix.setScale(SkScalarHalf(oval.width()), SkScalarHalf(oval.height()));
616 matrix.postTranslate(oval.centerX(), oval.centerY());
620 &matrix, pts);
709 SkMatrix matrix; local
712 matrix.setScale(radius, radius);
713 matrix.postTranslate(xx - SkScalarMul(radius, before.fX),
716 int count = SkBuildQuadArc(before, after, arcDir, &matrix, pts);
729 SkMatrix matrix; local
731 matrix.setTranslate(dx, dy)
858 SkMatrix matrix; local
    [all...]
SkBitmapProcState.h 51 // If a shader proc is present, then the corresponding matrix/sample procs
94 /** Given the size of a buffer, to be used for calling the matrix and
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridQuad.java 228 MatrixStack matrix = mMatrix; local
229 if (matrix != null) {
231 matrix.glLoadIdentity();
232 matrix.glTranslatef(0.5f, 0.5f, 0.0f);
237 matrix.glRotatef(-orientationId, 0.0f, 0.0f, 1.0f);
238 matrix.glScalef(scale, scale, 1.0f);
239 matrix.glTranslatef(-0.5f + (float) (sini * 0.125f / scale), -0.5f
241 // now we have the desired matrix
248 matrix.apply(mCoordsIn, mCoordsOut);
  /frameworks/base/core/jni/android/graphics/
Path.cpp 227 static void addPath__PathMatrix(JNIEnv* env, jobject clazz, SkPath* obj, SkPath* src, SkMatrix* matrix) {
228 obj->addPath(*src, *matrix);
249 static void transform__MatrixPath(JNIEnv* env, jobject clazz, SkPath* obj, SkMatrix* matrix, SkPath* dst) {
250 obj->transform(*matrix, dst);
253 static void transform__Matrix(JNIEnv* env, jobject clazz, SkPath* obj, SkMatrix* matrix) {
254 obj->transform(*matrix);
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 284 QTransform matrix(platformContext()->combinedTransform());
285 return AffineTransform(matrix.m11(), matrix.m12(), matrix.m21(),
286 matrix.m22(), matrix.dx(), matrix.dy());
299 QTransform matrix = m_common->state.pathTransform; local
300 m_data->currentPath = m_data->currentPath * matrix;
970 QTransform matrix; local
992 QTransform matrix; local
1006 QTransform matrix; local
1098 QTransform matrix = transform.inverse(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Patterns.java 81 Matrix m = new Matrix();
PolyToPoly.java 39 private Matrix mMatrix = new Matrix();
  /external/freetype/include/freetype/
ftrender.h 50 const FT_Matrix* matrix,
96 const FT_Matrix* matrix,
  /external/skia/src/effects/
SkTransparentShader.cpp 23 const SkMatrix& matrix)
28 return this->INHERITED::setContext(device, paint, matrix);
  /external/webkit/WebCore/platform/graphics/android/
GradientAndroid.cpp 108 SkMatrix matrix = m_gradientSpaceTransformation; local
109 s->setLocalMatrix(matrix);
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 338 CGAffineTransform matrix = CGAffineTransformIdentity; local
339 matrix.b = -matrix.b;
340 matrix.d = -matrix.d;
344 matrix = CGAffineTransformConcat(matrix, CGAffineTransformMake(1, 0, skew, 1, 0, 0));
347 CGContextSetTextMatrix(cgContext, matrix);
  /external/webkit/WebCore/rendering/
SVGMarkerLayoutInfo.cpp 96 bounds.unite(markerContent->markerBoundaries(layout.matrix));
112 layout.marker->draw(paintInfo, layout.matrix);
  /external/webkit/WebCore/svg/
SVGStyledTransformableElement.cpp 59 return m_supplementalTransform ? transform()->concatenate().matrix() * *m_supplementalTransform : transform()->concatenate().matrix();
SVGTextElement.cpp 87 return m_supplementalTransform ? transform()->concatenate().matrix() * *m_supplementalTransform : transform()->concatenate().matrix();
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEConvolveMatrix.cpp 163 ts << "[type=CONVOLVE-MATRIX] ";
166 << " [kernel matrix=" << m_kernelMatrix << "]"
  /external/webkit/WebKit/android/plugins/
ANPPathInterface.cpp 86 static void anp_transform(ANPPath* src, const ANPMatrix* matrix,
88 src->transform(*matrix, dst);
  /packages/wallpapers/MusicVisualization/res/raw/
vu.rs 72 // set matrix so point of rotation becomes origin
89 // restore matrix
  /external/freetype/src/cff/
cffobjs.h 106 FT_Fixed xx, xy; /* transformation matrix coefficients */

Completed in 664 milliseconds

1 2 3 4 5 6 78 91011>>