/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Headphone_Coeffs.h | 28 /* Stereo Enhancer coefficients for 8000 Hz sample rate, scaled with 0.161258 */ 42 /* Stereo Enhancer coefficients for 11025Hz sample rate, scaled with 0.162943 */ 56 /* Stereo Enhancer coefficients for 12000Hz sample rate, scaled with 0.162191 */ 70 /* Stereo Enhancer coefficients for 16000Hz sample rate, scaled with 0.162371 */ 84 /* Stereo Enhancer coefficients for 22050Hz sample rate, scaled with 0.160781 */ 98 /* Stereo Enhancer coefficients for 24000Hz sample rate, scaled with 0.161882 */ 112 /* Stereo Enhancer coefficients for 32000Hz sample rate, scaled with 0.160322 */ 126 /* Stereo Enhancer coefficients for 44100Hz sample rate, scaled with 0.163834 */ 140 /* Stereo Enhancer coefficients for 48000Hz sample rate, scaled with 0.164402 */ 172 /* Reverb coefficients for 8000 Hz sample rate, scaled with 1.038030 * [all...] |
/external/skia/samplecode/ |
SampleIdentityScale.cpp | 20 // Intended to exercise pixel snapping observed with scaled images (and 21 // with non-scaled images, but for a different reason): Bug 1145 70 text = "Scaled = 1"; 77 text = "Scaled = 0";
|
SampleSubpixelTranslate.cpp | 19 // Intended to exercise pixel snapping observed with scaled images (and 20 // with non-scaled images, but for a different reason): Bug 1145 83 canvas->drawText( "AA Scaled", strlen("AA Scaled"), fCurPos.fX + SK_ARRAY_COUNT(gQualitys) * (fSize + 10), fCurPos.fY + fSize/2, paint ); 91 canvas->drawText( "Scaled", strlen("Scaled"), fCurPos.fX + SK_ARRAY_COUNT(gQualitys) * (fSize + 10), fCurPos.fY + fSize + 10 + fSize/2, paint );
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/ |
NordsieckStepInterpolator.java | 49 /** Step size used in the first scaled derivative and Nordsieck vector. */ 60 /** First scaled derivative. */ 61 private double[] scaled; field in class:NordsieckStepInterpolator 85 if (interpolator.scaled != null) { 86 scaled = interpolator.scaled.clone(); 119 * @param stepSize step size used in the scaled and nordsieck arrays 121 * scaled derivative 130 this.scaled = scaledDerivative; 139 * <p>Since the scaled and Nordiseck arrays are shared with the caller [all...] |
/external/skia/tests/ |
PMFloatTest.cpp | 37 SkPMFloat scaled = fs * Sk4f(0.25f); local 38 REPORTER_ASSERT(r, SkScalarNearlyEqual(63.75f, scaled.a())); 39 REPORTER_ASSERT(r, SkScalarNearlyEqual(38.25f, scaled.r())); 40 REPORTER_ASSERT(r, SkScalarNearlyEqual( 0.25f, scaled.g())); 41 REPORTER_ASSERT(r, SkScalarNearlyEqual( 0.00f, scaled.b()));
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
dogleg.h | 54 /* next, calculate the scaled gradient direction. */ 62 /* calculate the norm of the scaled gradient and test for */ 63 /* the special case in which the scaled gradient is zero. */ 70 /* calculate the point along the scaled gradient */ 85 /* test whether the scaled gradient direction is acceptable. */ 90 /* the scaled gradient direction is not acceptable. */ 100 /* direction and the scaled gradient direction. */
|
/system/core/libutils/ |
LinearTransform.cpp | 120 uint64_t scaled, res; local 143 &scaled, 147 // if scaled is >= 0x8000<etc>, then we are going to overflow or 150 if (scaled & INT64_MIN) { 157 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX)) 161 *out = (is_neg ? (-scaled) : scaled) + basis2; 163 // Scaled fits within signed bounds, so we just need to check for 164 // over/underflow for two signed integers. Basically, if both scaled 175 scaled = -scaled [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageUtilsTest.java | 329 BufferedImage scaled = ImageUtils.scale(image, 0.5, 0.5); local 330 assertEquals(50, scaled.getWidth()); 331 assertEquals(50, scaled.getHeight()); 332 assertEquals(0xFF00FF00, scaled.getRGB(0, 0)); 333 assertEquals(0xFF00FF00, scaled.getRGB(49, 49)); 334 assertEquals(0xFFFF0000, scaled.getRGB(25, 25)); 336 scaled = ImageUtils.scale(image, 2.0, 2.0); 337 assertEquals(200, scaled.getWidth()); 338 assertEquals(200, scaled.getHeight()); 339 assertEquals(0xFF00FF00, scaled.getRGB(0, 0)) [all...] |
/external/skia/gm/ |
pictureimagefilter.cpp | 88 // Draw the picture scaled 94 // Draw the picture scaled, but rasterized at original resolution 98 // Draw the picture scaled, pixelated
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/ |
MultistepIntegrator.java | 34 * <p>We define scaled derivatives s<sub>i</sub>(n) at step n as: 43 * the Nordsieck vector with higher degrees scaled derivatives all taken at the same 64 /** First scaled derivative (h y'). */ 65 protected double[] scaled; field in class:MultistepIntegrator 67 /** Nordsieck matrix of the higher scaled derivatives. 240 /** Initialize the high order scaled derivatives at step start. 241 * @param first first scaled derivative at step start 242 * @param multistep scaled derivatives after step start (hy'1, ..., hy'k-1) 244 * @return high order scaled derivatives at step start 301 /** Initialize the high order scaled derivatives at step start [all...] |
/development/samples/devbytes/graphics/BitmapScaling/res/values/ |
strings.xml | 20 <string name="scaled_images">Scaled Images</string>
|
/external/llvm/test/CodeGen/ARM/ |
lsr-scale-addr-mode.ll | 2 ; Should use scaled addressing mode.
|
/frameworks/native/include/input/ |
VelocityControl.h | 39 // The scaled speed at which acceleration begins to be applied. 47 // The scaled speed at which maximum acceleration is applied. 57 // When the speed is above the low speed threshold, the velocity will scaled 90 * scaled / accelerated delta based on the current velocity. */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-completion4.txt | 3 50sp : <b>Scale-independent Pixels</b> - this is like the dp unit, but it is also scaled by the user's font size preference.
|
completionvalues1-expected-completion24.txt | 3 17sp : <b>Scale-independent Pixels</b> - this is like the dp unit, but it is also scaled by the user's font size preference.
|
completionvalues1-expected-completion66.txt | 3 17sp : <b>Scale-independent Pixels</b> - this is like the dp unit, but it is also scaled by the user's font size preference.
|
completionvalues1-expected-completion67.txt | 3 17sp : <b>Scale-independent Pixels</b> - this is like the dp unit, but it is also scaled by the user's font size preference.
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/ |
results_holder.h | 20 /* The value of inv_get_gyro_sum_of_sqr is scaled such the (1 dps)^2 = */ 22 /* The value of inv_accel_sum_of_sqr is scaled such that (1g)^2 = */
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
AdamsIntegrator.java | 97 /** Update the high order scaled derivatives for Adams integrators (phase 1). 103 * @param highOrder high order scaled derivatives 112 /** Update the high order scaled derivatives Adams integrators (phase 2). 119 * @param start first order scaled derivatives at step start 120 * @param end first order scaled derivatives at step end 121 * @param highOrder high order scaled derivatives, will be modified
|
AdamsNordsieckTransformer.java | 37 * representation with higher order scaled derivatives.</p> 39 * <p>We define scaled derivatives s<sub>i</sub>(n) at step n as: 57 * higher degrees scaled derivatives all taken at the same step, i.e it handles y<sub>n</sub>, 254 /** Initialize the high order scaled derivatives at step start. 255 * @param first first scaled derivative at step start 256 * @param multistep scaled derivatives after step start (hy'1, ..., hy'k-1) 271 /** Update the high order scaled derivatives for Adams integrators (phase 1). 277 * @param highOrder high order scaled derivatives 286 /** Update the high order scaled derivatives Adams integrators (phase 2). 293 * @param start first order scaled derivatives at step star [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/ |
vad2.h | 104 #define SHIFT_STATE_0 0 /* channel energy scaled as 22,9 */ 105 #define SHIFT_STATE_1 1 /* channel energy scaled as 27,4 */ 107 #define NOISE_FLOOR_CHAN_0 512 /* 1.0 scaled as 22,9 */ 108 #define MIN_CHAN_ENRG_0 32 /* 0.0625 scaled as 22,9 */ 109 #define MIN_NOISE_ENRG_0 32 /* 0.0625 scaled as 22,9 */ 110 #define INE_NOISE_0 8192 /* 16.0 scaled as 22,9 */ 113 #define NOISE_FLOOR_CHAN_1 16 /* 1.0 scaled as 27,4 */ 114 #define MIN_CHAN_ENRG_1 1 /* 0.0625 scaled as 27,4 */ 115 #define MIN_NOISE_ENRG_1 1 /* 0.0625 scaled as 27,4 */ 116 #define INE_NOISE_1 256 /* 16.0 scaled as 27,4 * [all...] |
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
LMonestep.h | 59 /* on the first iteration, calculate the norm of the scaled x */ 73 /* compute the norm of the scaled gradient. */ 109 /* compute the scaled actual reduction. */ 114 /* compute the scaled predicted reduction and */ 115 /* the scaled directional derivative. */
|
/external/libavc/common/ |
ih264_trans_data.h | 50 * transformed block, the coefficient at index location (i,j) is scaled by one of 66 * transformed block, the coefficient at index location (i,j) is scaled by one of 99 * transformed block, the coefficient at index location (i,j) is scaled by one of
|
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/ |
ImageUtils.java | 196 * @param source the image to be scaled 199 * @return the scaled image 213 BufferedImage scaled = local 215 Graphics2D g2 = scaled.createGraphics(); 227 return scaled; 263 BufferedImage scaled = new BufferedImage(nearestWidth, nearestHeight, imageType); local 265 Graphics2D g2 = scaled.createGraphics(); 273 source = scaled; 278 scaled = new BufferedImage(halfWidth, halfHeight, imageType); 279 g2 = scaled.createGraphics() [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/ |
rstat.x | 41 % * Scale factor for scaled integers used to count load averages. 74 int avenrun[3]; /* scaled by FSCALE */ 93 unsigned int avenrun[3];/* scaled by FSCALE */
|