/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm/ |
user.h | 23 unsigned int exponent:14; member in struct:user_fp::fp_reg
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm/ |
user.h | 23 unsigned int exponent:14; member in struct:user_fp::fp_reg
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/ |
user.h | 23 unsigned int exponent:14; member in struct:user_fp::fp_reg
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/ |
user.h | 23 unsigned int exponent:14; member in struct:user_fp::fp_reg
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
floatobject.h | 94 * argument, true if you want the string in little-endian format (exponent 95 * last, at p+3 or p+7), false if you want big-endian format (exponent 111 * argument, true if the string is in little-endian format (exponent 112 * last, at p+3 or p+7), false if big-endian (exponent first, at p).
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
floatobject.h | 94 * argument, true if you want the string in little-endian format (exponent 95 * last, at p+3 or p+7), false if you want big-endian format (exponent 111 * argument, true if the string is in little-endian format (exponent 112 * last, at p+3 or p+7), false if big-endian (exponent first, at p).
|
/system/core/fastboot/ |
genkey.sh | 9 # Generate a 2048 bit RSA key with public exponent 3.
|
/external/aac/libAACdec/src/ |
block.h | 188 * \brief find a common exponent (shift factor) for all sfb in each Spectral window, and store them into 230 * \return the exponent of the result (mantissa) stored into *pValue. 238 UINT exponent; local 242 exponent = DFRACT_BITS - freeBits ; 243 FDK_ASSERT (exponent < 14); 258 *pValue = fMultDiv2 (invQVal, MantissaTable [lsb][exponent]) ; 261 return ExponentTable [lsb][exponent] + 1;
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
Support_DecimalFormat.java | 62 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT, 87 NumberFormat.Field.EXPONENT, 13, 14); 119 NumberFormat.Field.EXPONENT, 0, 0); 155 // test exponential pattern with positive exponent 159 // test exponential pattern with negative exponent 255 v.add(new FieldContainer(8, 9, NumberFormat.Field.EXPONENT)); 265 v.add(new FieldContainer(6, 7, NumberFormat.Field.EXPONENT));
|
/external/chromium_org/third_party/freetype/src/psaux/ |
psconv.c | 265 /* read exponent, if any */ 268 FT_Long exponent; local 274 exponent = PS_Conv_ToInt( &p, limit ); 279 /* arbitrarily limit exponent */ 280 if ( exponent > 1000 ) 282 else if ( exponent < -1000 ) 285 power_ten += exponent;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
opensslidentity.cc | 79 BIGNUM* exponent = BN_new(); local 81 if (!pkey || !exponent || !rsa || 82 !BN_set_word(exponent, 0x10001) || // 65537 RSA exponent 83 !RSA_generate_key_ex(rsa, KEY_LENGTH, exponent, NULL) || 86 BN_free(exponent); 91 BN_free(exponent);
|
/external/freetype/src/psaux/ |
psconv.c | 265 /* read exponent, if any */ 268 FT_Long exponent; local 274 exponent = PS_Conv_ToInt( &p, limit ); 279 /* arbitrarily limit exponent */ 280 if ( exponent > 1000 ) 282 else if ( exponent < -1000 ) 285 power_ten += exponent;
|
/libcore/support/src/test/java/tests/support/ |
Support_DecimalFormat.java | 61 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT, 86 NumberFormat.Field.EXPONENT, 13, 14); 120 NumberFormat.Field.EXPONENT, 0, 0); 167 // test exponential pattern with positive exponent 171 // test exponential pattern with negative exponent 257 v.add(new FieldContainer(8, 9, NumberFormat.Field.EXPONENT)); 267 v.add(new FieldContainer(6, 7, NumberFormat.Field.EXPONENT));
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
double-conversion.h | 65 // - EMIT_POSITIVE_EXPONENT_SIGN: when the number is converted into exponent 225 // decimal point, the decimal point, the exponent character, the 226 // exponent's sign, and at most 3 exponent digits). 264 // exponent character, the exponent's sign, and at most 3 exponent digits). 296 // (together with the correct exponent) then reading this number will give 337 // The given exponent assumes a decimal point after the first decimal digit. 340 int exponent, [all...] |
bignum-dtoa.h | 46 // Return a fixed number of digits, no matter what the exponent is. 59 // (together with the correct exponent) then reading this number will give
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t033backtracking.g | 474 : ('0'..'9')+ '.' ('0'..'9')* Exponent? FloatTypeSuffix? 475 | '.' ('0'..'9')+ Exponent? FloatTypeSuffix? 476 | ('0'..'9')+ Exponent FloatTypeSuffix? 477 | ('0'..'9')+ Exponent? FloatTypeSuffix 481 Exponent : ('e'|'E') ('+'|'-')? ('0'..'9')+ ;
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t033backtracking.g | 489 : ('0'..'9')+ '.' ('0'..'9')* Exponent? FloatTypeSuffix? 490 | '.' ('0'..'9')+ Exponent? FloatTypeSuffix? 491 | ('0'..'9')+ Exponent FloatTypeSuffix? 492 | ('0'..'9')+ Exponent? FloatTypeSuffix 496 Exponent : ('e'|'E') ('+'|'-')? ('0'..'9')+ ;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEComponentTransfer.cpp | 146 double exponent = transferFunction.exponent; // RCVT doesn't like passing a double and a float to pow, so promote this to double local 147 double val = 255.0 * (transferFunction.amplitude * pow((i / 255.0), exponent) + transferFunction.offset); 258 << "\" exponent=\"" << function.exponent
|
/external/bison/lib/ |
vasnprintf.c | 3103 int exponent; local 3254 int exponent; local 3553 int exponent = floorlog10l (arg < 0 ? -arg : arg); local 3569 int exponent = floorlog10 (arg < 0 ? -arg : arg); local 3695 int exponent; local 3845 int exponent; local 4157 int exponent; local 4319 int exponent; local [all...] |
/external/chromium_org/third_party/icu/source/common/ |
putilimp.h | 94 * Floating point utility to calculate d to the power of exponent (d^exponent). 97 U_INTERNAL double U_EXPORT2 uprv_pow(double d, double exponent); 99 * Floating point utility to calculate 10 to the power of exponent (10^exponent). 102 U_INTERNAL double U_EXPORT2 uprv_pow10(int32_t exponent);
|
/external/guava/guava-tests/test/com/google/common/math/ |
MathTesting.java | 118 for (int exponent : asList(2, 3, 4, 5, 6, 7, 8, 9, 15, 16, 17, 23, 24, 25)) { 119 int x = 1 << exponent; 153 for (int exponent : asList(32, 33, 39, 40, 41, 47, 48, 49, 55, 56, 57)) { 154 long x = 1L << exponent; 186 for (int exponent : asList(64, 65, 71, 72, 73, 79, 80, 81, 255, 256, 257, 511, 512, 513, 188 BigInteger x = ONE.shiftLeft(exponent);
|
/external/valgrind/main/VEX/useful/ |
fp_80_64.c | 76 nonzero. Exponent is 15 bits, fractional part is 63 bits, and 90 Exponent is 11 bits, fractional part is 52 bits, and there is a 126 /* If the exponent is zero, either we have a zero or a denormal. 141 mantissa so as to decide how much to bump the exponent down 158 /* Set the exponent appropriately, and we're done. */ 166 /* If the exponent is 7FF, this is either an Infinity, a SNaN or 215 normalised number. Rebias the exponent and build the new 254 /* If the exponent is zero, either we have a zero or a denormal. 264 /* If the exponent is 7FFF, this is either an Infinity, a SNaN or 331 normalised number. Rebias the exponent and consider. * [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
sigcontext.h | 26 unsigned short exponent; member in struct:_fpreg 31 unsigned short exponent; member in struct:_fpxreg
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_exp.c | 39 * Compute exp(x), scaled to avoid spurious overflow. An exponent is 53 * minimize |exp(kln2) - 2**k|. We also scale the exponent of
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
sigcontext.h | 26 unsigned short exponent; member in struct:_fpreg 31 unsigned short exponent; member in struct:_fpxreg
|