HomeSort by relevance Sort by last modified time
    Searched full:prescale (Results 1 - 25 of 65) sorted by null

1 2 3

  /system/core/libpixelflinger/
col32cb16blend.S 49 mov r10, r10, lsl #5 // prescale red
50 mov r12, r12, lsl #6 // prescale green
51 mov r4, r4, lsl #5 // prescale blue
col32cb16blend_neon.S 125 mov r11, r11, lsl #5 // prescale red
126 mov r12, r12, lsl #6 // prescale green
127 mov r4, r4, lsl #5 // prescale blue
  /external/skia/legacy/include/effects/
SkColorMatrix.h 22 void preScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
  /external/arduino/hardware/arduino/cores/arduino/
wiring.c 181 // set timer 0 prescale factor to 64
198 #error Timer 0 prescale factor 64 not set correctly
217 // set timer 1 prescale factor to 64
232 // set timer 2 prescale factor to 64
251 sbi(TCCR3B, CS31); // set timer 3 prescale factor to 64
257 sbi(TCCR4B, CS41); // set timer 4 prescale factor to 64
263 sbi(TCCR5B, CS51); // set timer 5 prescale factor to 64
269 // set a2d prescale factor to 128
272 // this code should use F_CPU to determine the prescale factor.
  /external/skia/bench/
Matrix44Bench.cpp 63 PreScaleMatrix44Bench(void* param) : INHERITED(param, "prescale") {
70 fM0.preScale(fX, fY, fZ);
137 fM0.reset(); // just to normalize this test with prescale/postscale
MatrixBench.cpp 83 m = fM0; m.preScale(fSX, fSY);
84 m = fM1; m.preScale(fSX, fSY);
85 m = fM2; m.preScale(fSX, fSY);
  /external/skia/include/effects/
SkColorMatrix.h 20 void preScale(SkScalar rScale, SkScalar gScale, SkScalar bScale,
  /external/skia/legacy/src/animator/
SkDrawMatrix.h 54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /external/skia/src/animator/
SkDrawMatrix.h 54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMetadata.java 282 imageRotation.preScale(-1, 1);
286 imageRotation.preScale(1, -1);
293 imageRotation.preScale(1, -1);
300 imageRotation.preScale(1, -1);
326 float preScale = GeometryMath.scale(originalWidth, originalHeight,
347 m1.preScale(scale, scale);
348 m1.preScale(preScale, preScale);
  /external/eigen/test/
geo_transformations.cpp 66 t1.prescale(v1.cwiseInverse());
177 t1.prescale(v1.cwiseInverse());
193 VERIFY_IS_APPROX(t0.prescale(a).matrix(), t1.prescale(Vector3::Constant(a)).matrix());
261 * (t21.prescale(v21.cwiseInverse()).translate(-v20))).matrix().isIdentity(test_precision<Scalar>()) );
283 t0.prescale(s0);
291 t0.prescale(s0);
297 t0.prerotate(q1).prescale(v0).pretranslate(v0);
  /external/skia/legacy/include/utils/
SkMatrix44.h 151 void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
157 void preScale(SkMScalar scale) {
158 this->preScale(scale, scale, scale);
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 152 t1.prescale(v0);
164 t1.prescale(v1.cwise().inverse());
181 VERIFY_IS_APPROX(t0.prescale(a).matrix(), t1.prescale(Vector3::Constant(a)).matrix());
248 * (t21.prescale(v21.cwise().inverse()).translate(-v20))).matrix().isIdentity(test_precision<Scalar>()) );
262 t0.prerotate(q1).prescale(v0).pretranslate(v0);
eigen2_geometry_with_eigen2_prefix.cpp 154 t1.prescale(v0);
166 t1.prescale(v1.cwise().inverse());
183 VERIFY_IS_APPROX(t0.prescale(a).matrix(), t1.prescale(Vector3::Constant(a)).matrix());
250 * (t21.prescale(v21.cwise().inverse()).translate(-v20))).matrix().isIdentity(test_precision<Scalar>()) );
264 t0.prerotate(q1).prescale(v0).pretranslate(v0);
  /external/quake/quake/src/QW/client/
d_scan.c 152 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
183 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
212 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
286 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
317 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
346 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
d_sprite.c 77 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
110 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
139 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
  /external/quake/quake/src/WinQuake/
d_scan.cpp 154 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
185 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
214 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
288 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
319 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
348 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
d_sprite.cpp 77 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
110 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
139 z = (float)0x10000 / zi; // prescale to 16.16 fixed-point
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 91 flipMat.preScale(1.0f, -1.0f);
  /external/webkit/Source/WebKit/android/plugins/
ANPMatrixInterface.cpp 85 matrix->preScale(SkFloatToScalar(sx), SkFloatToScalar(sy));
157 ASSIGN(i, preScale);
  /external/skia/include/utils/
SkMatrix44.h 263 void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
269 inline void preScale(SkMScalar scale) {
270 this->preScale(scale, scale, scale);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 246 matrix.preScale(-1, 1);
249 matrix.preScale(1, -1);
253 matrix.preScale(1, -1);
257 matrix.preScale(1, -1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 48 private static final boolean PRESCALE =
69 * garbage collection when {@link PRESCALE} is set, until the scaled image
225 if (PRESCALE && awtImage != null) {
427 if (PRESCALE) {
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 193 inline Transform& prescale(const MatrixBase<OtherDerived> &other);
196 inline Transform& prescale(Scalar s);
378 * \sa prescale()
392 * \sa prescale(Scalar)
408 Transform<Scalar,Dim>::prescale(const MatrixBase<OtherDerived> &other) function in class:Eigen::Transform
420 inline Transform<Scalar,Dim>& Transform<Scalar,Dim>::prescale(Scalar s) function in class:Eigen::Transform
  /external/eigen/doc/
C08_TutorialGeometry.dox 208 t.prescale(Vector_(sx,sy,..));
209 t.prescale(s);

Completed in 1475 milliseconds

1 2 3