/cts/tests/res/values/ |
dimens.xml | 19 <item name="frac100perc" type="dimen" format="fraction">100%</item> 20 <item name="frac1perc" type="dimen" format="fraction">1%</item> 21 <item name="fracp1perc" type="dimen" format="fraction">.1%</item> 22 <item name="fracp01perc" type="dimen" format="fraction">.01%</item> 23 <item name="frac0perc" type="dimen" format="fraction">0%</item> 24 <item name="frac1p1perc" type="dimen" format="fraction">1.1%</item> 25 <item name="frac100p1perc" type="dimen" format="fraction">100.1%</item> 26 <item name="frac25510perc" type="dimen" format="fraction">25510%</item> 27 <item name="frac25610perc" type="dimen" format="fraction">25610%</item> 28 <item name="frac6553510perc" type="dimen" format="fraction">6553510%</item [all...] |
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/ |
log2.c | 52 * 5- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2
60 Word16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
68 *fraction = 0;
75 a = (Word16)(L_x); /* Extract b10-b24 of fraction */
81 *fraction = extract_h (L_y);
101 Word16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
107 Log2_norm ((L_x << exp), exp, exponent, fraction);
|
pitch_f4.c | 60 Word32 frac /* (i) : fraction (-4..+3) */
70 Word16 * pit_frac, /* (o) : chosen fraction (0, 1, 2 or 3). */
77 Word32 fraction, i;
local 120 fraction = -3;
124 fraction = -2;
128 fraction = 0;
130 max = Interpol_4(&corr[t0], fraction);
132 for (i = fraction + step; i <= 3; i += step)
138 fraction = i;
141 /* limit the fraction value in the interval [0,1,2,3] */ [all...] |
math_op.c | 83 | 1- If exponant is odd then shift fraction right once. |
85 | 3- i = bit25-b30 of fraction, 16 <= i <= 63 ->because of normalization. |
88 | 6- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2 |
136 | L_x = pow(2.0, exponant.fraction) (exponant = interger part) |
137 | = pow(2.0, 0.fraction) << exponant |
144 | 1- i = bit10-b15 of fraction, 0 <= i <= 31 |
145 | 2- a = bit0-b9 of fraction |
160 Word16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */
166 L_x = vo_L_mult(fraction, 32); /* L_x = fraction<<6 */ [all...] |
/external/libvpx/vp8/encoder/arm/ |
picklpf_arm.c | 24 vpxyv12_copy_partial_frame_neon(YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_ybc, int Fraction) 37 linestocopy = (yheight >> (Fraction + 4));
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/ |
log2.h | 50 Word16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1)*/
57 Word16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
|
/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/ |
MovieControllerLayer.m | 131 CGFloat fraction = 0.0; 133 fraction = [self _currentTime] / [self _duration]; 135 CGFloat x = fraction * (CGRectGetWidth(sliderRect) - CGImageGetWidth(_thumb)); 288 CGFloat fraction = (centerX - CGRectGetMinX(innerRect)) / CGRectGetWidth(innerRect); 289 if (fraction > 1.0) 290 fraction = 1.0; 291 else if (fraction < 0.0) 292 fraction = 0.0; 294 NSTimeInterval newTime = fraction * [self _duration];
|
/bionic/libm/src/ |
s_modf.c | 19 * return fraction part of x, and return x's integral part in *iptr. 56 } else if (j0>51) { /* no fraction part */ 62 } else { /* fraction part in low x */
|
s_significand.c | 20 * for exercising the fraction-part(F) IEEE 754-1985 test vector.
|
/external/fdlibm/ |
s_modf.c | 16 * return fraction part of x, and return x's integral part in *iptr. 62 } else if (j0>51) { /* no fraction part */ 67 } else { /* fraction part in low x */
|
s_significand.c | 17 * for exercising the fraction-part(F) IEEE 754-1985 test vector.
|
/frameworks/base/packages/SettingsProvider/res/values/ |
defaults.xml | 31 <fraction name="def_window_animation_scale">100%</fraction> 32 <fraction name="def_window_transition_scale">100%</fraction>
|
/libcore/support/src/test/java/tests/support/ |
Support_DecimalFormat.java | 55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION, 80 NumberFormat.Field.FRACTION, 10, 11); 112 NumberFormat.Field.FRACTION, 9, 11); 201 v.add(new FieldContainer(4, 6, NumberFormat.Field.FRACTION)); 216 v.add(new FieldContainer(9, 11, NumberFormat.Field.FRACTION)); 226 v.add(new FieldContainer(9, 11, NumberFormat.Field.FRACTION)); 235 v.add(new FieldContainer(5, 7, NumberFormat.Field.FRACTION)); 244 v.add(new FieldContainer(6, 8, NumberFormat.Field.FRACTION)); 269 v.add(new FieldContainer(5, 6, NumberFormat.Field.FRACTION)); 280 v.add(new FieldContainer(3, 5, NumberFormat.Field.FRACTION)); [all...] |
/external/tcpdump/ |
print-ntp.c | 193 f = EXTRACT_16BITS(&sfp->fraction); 195 f = ff * 1000000.0; /* Treat fraction as parts per million */ 210 uf = EXTRACT_32BITS(&lfp->fraction); 215 f = ff * 1000000000.0; /* treat fraction as parts per billion */ 248 uf = EXTRACT_32BITS(&lfp->fraction); 249 ouf = EXTRACT_32BITS(&olfp->fraction); 282 f = ff * 1000000000.0; /* treat fraction as parts per billion */
|
/frameworks/base/core/java/android/net/ |
SntpClient.java | 183 long fraction = read32(buffer, offset + 4); local 184 return ((seconds - OFFSET_1900_TO_1970) * 1000) + ((fraction * 1000L) / 0x100000000L); 202 long fraction = milliseconds * 0x100000000L / 1000L; local 203 // write fraction in big endian format 204 buffer[offset++] = (byte)(fraction >> 24); 205 buffer[offset++] = (byte)(fraction >> 16); 206 buffer[offset++] = (byte)(fraction >> 8);
|
/frameworks/base/core/java/android/view/animation/ |
GridLayoutAnimationController.java | 159 * column to the other. The delay is expressed as a fraction of the 162 * @return a fraction of the animation duration 173 * Sets the delay, as a fraction of the animation duration, by which the 176 * @param columnDelay a fraction of the animation duration 188 * row to the other. The delay is expressed as a fraction of the 191 * @return a fraction of the animation duration 202 * Sets the delay, as a fraction of the animation duration, by which the 205 * @param rowDelay a fraction of the animation duration
|
/frameworks/base/media/libeffects/testlibs/ |
AudioCommon.h | 33 // Number of fraction bits for audio coefficient. 39 // Number of fraction bits for audio sample.
|
/bionic/libc/arch-arm/include/machine/ |
ieee.h | 54 * Define the number of bits in each fraction and exponent. 69 * in the fraction; to represent 2 , we need two, and so on. This 161 * Floats whose exponent is zero are either zero (iff all fraction 165 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/bionic/libc/arch-sh/include/machine/ |
ieee.h | 50 * Define the number of bits in each fraction and exponent. 65 * in the fraction; to represent 2 , we need two, and so on. This 111 * Floats whose exponent is zero are either zero (iff all fraction 115 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/bionic/libc/arch-x86/include/machine/ |
ieee.h | 51 * Define the number of bits in each fraction and exponent. 66 * in the fraction; to represent 2 , we need two, and so on. This 112 * Floats whose exponent is zero are either zero (iff all fraction 116 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/development/ndk/platforms/android-3/arch-arm/include/machine/ |
ieee.h | 54 * Define the number of bits in each fraction and exponent. 69 * in the fraction; to represent 2 , we need two, and so on. This 161 * Floats whose exponent is zero are either zero (iff all fraction 165 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/development/ndk/platforms/android-5/arch-x86/include/machine/ |
ieee.h | 51 * Define the number of bits in each fraction and exponent. 66 * in the fraction; to represent 2 , we need two, and so on. This 112 * Floats whose exponent is zero are either zero (iff all fraction 116 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/libcore/luni/src/test/java/libcore/java/text/ |
DecimalFormatTest.java | 133 private void assertBigDecimalWithFraction(BigDecimal bd, String expectedResult, int fraction) { 135 pf.setMaximumFractionDigits(fraction); 139 private void assertDecFmtWithMultiplierAndFraction(String value, int multiplier, int fraction, String expectedResult) { 142 df.setMaximumFractionDigits(fraction);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/machine/ |
ieee.h | 54 * Define the number of bits in each fraction and exponent. 69 * in the fraction; to represent 2 , we need two, and so on. This 161 * Floats whose exponent is zero are either zero (iff all fraction 165 * high fraction; if the bit is set, it is a `quiet NaN'.
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/machine/ |
ieee.h | 54 * Define the number of bits in each fraction and exponent. 69 * in the fraction; to represent 2 , we need two, and so on. This 161 * Floats whose exponent is zero are either zero (iff all fraction 165 * high fraction; if the bit is set, it is a `quiet NaN'.
|