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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/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...]
  /sdk/traceview/src/com/android/traceview/
TraceUnits.java 42 double scaled = value * mScale; local
43 if ((int) scaled == scaled)
48 return mFormatter.format(scaled);
  /frameworks/base/libs/utils/
LinearTransform.cpp 119 uint64_t scaled, res; local
142 &scaled,
146 // if scaled is >= 0x8000<etc>, then we are going to overflow or
149 if (scaled & INT64_MIN) {
156 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
160 *out = (is_neg ? (-scaled) : scaled) + basis2;
162 // Scaled fits within signed bounds, so we just need to check for
163 // over/underflow for two signed integers. Basically, if both scaled
174 scaled = -scaled
    [all...]
  /external/skia/src/core/
SkCordic.cpp 68 Sk64 scaled; local
69 scaled.setMul(sin, 0x6488d);
70 sin = scaled.fHi;
71 scaled.setMul(cos, 0x6488d);
73 scaled.fHi = - scaled.fHi;
74 *cosp = scaled.fHi;
106 Sk64 scaled; local
107 scaled.setMul(z, 0x6488d); // scale back into the SkScalar space (0x100000000/0x28be)
108 return scaled.fHi
193 Sk64 scaled; local
    [all...]
  /external/llvm/test/CodeGen/ARM/
lsr-scale-addr-mode.ll 2 ; Should use scaled addressing mode.
  /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/mlsdk/mllite/
mlsupervisor.h 33 // The value of inv_get_gyro_sum_of_sqr is scaled such the (1 dps)^2 = 2^this_number
36 // The value of inv_accel_sum_of_sqr is scaled such that (1g)^2 = 2^this_number
  /frameworks/base/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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 334 BufferedImage scaled = ImageUtils.scale(image, 0.5, 0.5); local
335 assertEquals(50, scaled.getWidth());
336 assertEquals(50, scaled.getHeight());
337 assertEquals(0xFF00FF00, scaled.getRGB(0, 0));
338 assertEquals(0xFF00FF00, scaled.getRGB(49, 49));
339 assertEquals(0xFFFF0000, scaled.getRGB(25, 25));
341 scaled = ImageUtils.scale(image, 2.0, 2.0);
342 assertEquals(200, scaled.getWidth());
343 assertEquals(200, scaled.getHeight());
344 assertEquals(0xFF00FF00, scaled.getRGB(0, 0))
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/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 */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 103 * Returns the scaled image size in pixels.
105 * @return The scaled image size in pixels.
125 // scaled image size
  /external/libvpx/vp8/encoder/
treewriter.h 40 /* VP8BC version is scaled by 2^20 rather than 2^8; see bool_coder.h */
43 /* Both of these return bits, not scaled bits. */
  /frameworks/base/graphics/java/android/graphics/drawable/
MipmapDrawable.java 34 * size matches the most closely the drawing bounds. Providing several pre-scaled version of the
41 * the bounds' height. This selection ensures that the best available mipmap level is scaled down to
45 * If the bounds' height is larger than the largest mipmap, the largest mipmap will be scaled up.
52 * be similar to ensure a continuous visual appearance when the MipmapDrawable is scaled. The aspect
56 * A typical example use of a MipmapDrawable would be for an image which is intended to be scaled at
57 * various sizes, and for which one wants to provide pre-scaled versions to precisely control its
78 * drawables are respectively 8, 32 and 128 pixels, the first one will be scaled down when the
225 // No mipmap larger than bounds found. Use largest one which will be scaled up.
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 42 * width with resize() will result in a width scaled based
45 * height with resize() will result in a height scaled based
  /external/freetype/src/base/
ftoutln.c 54 #undef SCALED
55 #define SCALED( x ) ( ( (x) << shift ) - delta )
95 v_start.x = SCALED( v_start.x );
96 v_start.y = SCALED( v_start.y );
99 v_last.x = SCALED( v_last.x );
100 v_last.y = SCALED( v_last.y );
155 vec.x = SCALED( point->x );
156 vec.y = SCALED( point->y );
167 v_control.x = SCALED( point->x );
168 v_control.y = SCALED( point->y )
    [all...]
  /external/qemu/android/skin/
scaler.h 29 /* retrieve the position of the scaled source rectangle 'srect' into 'drect'
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 96 Bitmap scaled = createIconBitmap(src); local
101 new BitmapDrawable(createSelectedBitmap(scaled, false)));
103 new BitmapDrawable(createSelectedBitmap(scaled, true)));
104 result.addState(new int[0], new BitmapDrawable(scaled));
  /packages/apps/Launcher2/res/values-sw600dp/
config.xml 15 should be, as compared to the original view. If 0, it will not be scaled at all.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
extra-view-metadata.xml 28 resize (full|none|horizontal|vertical|scaled) "full"
82 resize="scaled" >
86 resize="scaled" />
90 resize="scaled" />
105 resize="scaled" />
281 resize="scaled"
286 resize="scaled"
  /external/freetype/src/truetype/
ttobjs.h 209 /* These values are found in FUnits in the font file, and must be scaled */
215 /* scaled when first used. However, while some values are always used */
222 /* - All CVT values are scaled to the maximum ppem size. */
231 /* entries are scaled to it. */
316 FT_ULong cvt_size; /* the scaled control value table */
  /external/jpeg/
jdct.h 22 * The DCT outputs are returned scaled up by a factor of 8; they therefore
61 typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
126 * Fractional constants are scaled left by CONST_BITS bits.
134 /* Convert a positive real constant to an integer scaled by CONST_SCALE.
141 /* Descale and correctly round an INT32 value that's scaled by N bits.
jddctmgr.c 99 /* The current scaled-IDCT routines require ISLOW-style multiplier tables,
214 * coefficients scaled by scalefactor[row]*scalefactor[col], where
217 * For integer operation, the multiplier table is to be scaled by
222 /* Precomputed values scaled up by 15 bits. */
244 /* precomputed values scaled up by 14 bits */
270 * coefficients scaled by scalefactor[row]*scalefactor[col], where

Completed in 1400 milliseconds

1 2 3 4 5 6 7 8 91011>>