/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES10Ext.spec | 1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
|
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
glspec-1.0ext | 1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
RSAKeyParameters.java | 9 private BigInteger exponent; field in class:RSAKeyParameters 14 BigInteger exponent) 19 this.exponent = exponent; 29 return exponent;
|
RSAKeyGenerationParameters.java | 28 // public exponent cannot be even 32 throw new IllegalArgumentException("public exponent cannot be even");
|
/external/nanopb-c/examples/using_double_on_avr/ |
double_conversion.c | 21 int16_t exponent; local 26 exponent = ((in.i >> 23) & 0xFF) - 127; 29 if (exponent == 128) 32 exponent = 1024; 34 else if (exponent == -127) 39 exponent = -1023; 48 exponent--; 56 mantissa |= (uint64_t)(exponent + 1023) << 52; 65 int16_t exponent; local 71 exponent = ((value >> 52) & 0x7FF) - 1023 [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
IntersectionUtilities.cpp | 11 // get sign, exponent, mantissa from double 12 // Translate the double into sign, exponent and mantissa. 16 int exponent = (int) ((bits >> 52) & 0x7ffL); 19 // Subnormal numbers; exponent is effectively one higher, 21 if (exponent==0) 23 exponent++; 25 // Normal numbers; leave exponent as it is but add extra 32 // Bias the exponent. It's actually biased by 1023, but we're 35 exponent -= 1075; 46 exponent++ [all...] |
/external/skia/experimental/Intersection/ |
IntersectionUtilities.cpp | 11 // get sign, exponent, mantissa from double 12 // Translate the double into sign, exponent and mantissa. 16 int exponent = (int) ((bits >> 52) & 0x7ffL); 19 // Subnormal numbers; exponent is effectively one higher, 21 if (exponent==0) 23 exponent++; 25 // Normal numbers; leave exponent as it is but add extra 32 // Bias the exponent. It's actually biased by 1023, but we're 35 exponent -= 1075; 46 exponent++ [all...] |
/external/bison/lib/ |
printf-frexp.c | 69 int exponent; local 76 x = FREXP (x, &exponent); 79 exponent -= 1; 81 if (exponent < MIN_EXP - 1) 83 x = LDEXP (x, exponent - (MIN_EXP - 1)); 84 exponent = MIN_EXP - 1; 88 /* Since the exponent is an 'int', it fits in 64 bits. Therefore the 94 exponent = 0; 97 /* A nonnegative exponent. */ 103 x * 2^exponent = argument, x >= 1.0. * [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_r11g11b10f.h | 59 /* Map exponent to the range [-127,128] */ 60 int exponent = ((f32.ui >> 23) & 0xff) - 127; local 63 if (exponent == 128) { /* Infinity or NaN */ 88 else if (exponent > -15) { /* Representable value */ 89 exponent += UF11_EXPONENT_BIAS; 91 uf11 = exponent << UF11_EXPONENT_SHIFT | mantissa; 104 int exponent = (val & 0x07c0) >> UF11_EXPONENT_SHIFT; local 109 if (exponent == 0) { 115 else if (exponent == 31) { 120 exponent -= 15 146 int exponent = ((f32.ui >> 23) & 0xff) - 127; local 190 int exponent = (val & 0x03e0) >> UF10_EXPONENT_SHIFT; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_r11g11b10f.h | 59 /* Map exponent to the range [-127,128] */ 60 int exponent = ((f32.ui >> 23) & 0xff) - 127; local 63 if (exponent == 128) { /* Infinity or NaN */ 88 else if (exponent > -15) { /* Representable value */ 89 exponent += UF11_EXPONENT_BIAS; 91 uf11 = exponent << UF11_EXPONENT_SHIFT | mantissa; 104 int exponent = (val & 0x07c0) >> UF11_EXPONENT_SHIFT; local 109 if (exponent == 0) { 115 else if (exponent == 31) { 120 exponent -= 15 146 int exponent = ((f32.ui >> 23) & 0xff) - 127; local 190 int exponent = (val & 0x03e0) >> UF10_EXPONENT_SHIFT; local [all...] |
/external/valgrind/main/VEX/priv/ |
host_generic_maddf.c | 86 unsigned int exponent:11; member in struct:vg_ieee754_double::__anon35622 92 unsigned int exponent:11; 121 if ((u.ieee.mantissa1 & 1) == 0 && u.ieee.exponent != 0x7ff) 144 if (UNLIKELY (u.ieee.exponent + v.ieee.exponent 146 || UNLIKELY (u.ieee.exponent >= 0x7ff - DBL_MANT_DIG) 147 || UNLIKELY (v.ieee.exponent >= 0x7ff - DBL_MANT_DIG) 148 || UNLIKELY (w.ieee.exponent >= 0x7ff - DBL_MANT_DIG) 149 || UNLIKELY (u.ieee.exponent + v.ieee.exponent [all...] |
/libcore/luni/src/main/java/java/security/spec/ |
RSAPrivateCrtKeySpec.java | 31 // Public Exponent 37 // Prime Exponent P 39 // Prime Exponent Q 46 * modulus, public exponent, private exponent, prime factors, prime 52 * the public exponent {@code e}. 54 * the private exponent {@code d}. 60 * the exponent of the prime {@code p}. 62 * the exponent of the prime {@code q}. 95 * Returns the exponent of the prime {@code p} [all...] |
RSAKeyGenParameterSpec.java | 28 * The value of the public exponent {@code F0} = 3. 33 * The value of the public exponent {@code F4} = 65537. 39 // Public Exponent 44 * and public exponent. 49 * the value of the public exponent. 66 * Returns the value of the public exponent. 68 * @return the value of the public exponent.
|
/external/chromium_org/net/quic/ |
quic_data_reader.cc | 74 // normalized (hidden bit set, exponent offset by one) with exponent zero. 75 // Zero exponent offset by one sets the bit exactly where the hidden bit is. 80 uint16 exponent = value >> kUFloat16MantissaBits; // No sign extend on uint! local 81 // After the fast pass, the exponent is at least one (offset by one). 82 // Un-offset the exponent. 83 --exponent; 84 DCHECK_GE(exponent, 1); 85 DCHECK_LE(exponent, kUFloat16MaxExponent); 86 // Here we need to clear the exponent and set the hidden bit. We have alread 90 *result <<= exponent; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
strtod.cc | 116 int exponent, 129 exponent + (buffer.length() - kMaxSignificantDecimalDigits); 168 // Compute the binary exponent. 169 int exponent = 0; local 170 *result = DiyFp(significand, exponent); 177 int exponent, 191 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we 196 if (exponent < 0 && -exponent < kExactPowersOfTenSize) [all...] |
/external/chromium_org/v8/src/ |
strtod.cc | 92 int exponent, 105 exponent + (buffer.length() - kMaxSignificantDecimalDigits); 145 // Compute the binary exponent. 146 int exponent = 0; local 147 *result = DiyFp(significand, exponent); 154 int exponent, 170 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we 175 if (exponent < 0 && -exponent < kExactPowersOfTenSize) [all...] |
/external/compiler-rt/lib/builtins/ |
fixdfsi.c | 26 // Break a into sign, exponent, significand 30 const int exponent = (aAbs >> significandBits) - exponentBias; local 33 // If 0 < exponent < significandBits, right shift to get the result. 34 if ((unsigned int)exponent < significandBits) { 35 return sign * (significand >> (significandBits - exponent)); 38 // If exponent is negative, the result is zero. 39 else if (exponent < 0) { 43 // If significandBits < exponent, left shift to get the result. This shift 48 return sign * (significand << (exponent - significandBits));
|
fixsfsi.c | 23 // Break a into sign, exponent, significand 27 const int exponent = (aAbs >> significandBits) - exponentBias; local 30 // If 0 < exponent < significandBits, right shift to get the result. 31 if ((unsigned int)exponent < significandBits) { 32 return sign * (significand >> (significandBits - exponent)); 35 // If exponent is negative, the result is zero. 36 else if (exponent < 0) { 40 // If significandBits < exponent, left shift to get the result. This shift 45 return sign * (significand << (exponent - significandBits));
|
/libcore/luni/src/main/java/java/security/interfaces/ |
RSAPrivateCrtKey.java | 54 * Returns the CRT exponent of the primet {@code p}. 56 * @return the CRT exponent of the prime {@code p}. 61 * Returns the CRT exponent of the prime {@code q}. 63 * @return the CRT exponent of the prime {@code q}. 68 * Returns the public exponent {@code e}. 70 * @return the public exponent {@code e}.
|
/external/guava/guava/src/com/google/common/math/ |
DoubleUtils.java | 55 // The mask for the exponent, according to the {@link 80 int exponent = (int) ((bits & EXPONENT_MASK) >> SIGNIFICAND_BITS); local 81 exponent -= EXPONENT_BIAS; 82 return exponent; 90 int exponent = getExponent(d); local 91 switch (exponent) { 97 int newExponent = exponent + scale; 111 int exponent = getExponent(d); local 114 return (exponent == MIN_DOUBLE_EXPONENT - 1) 139 int exponent = absX.bitLength() - 1 local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
ieee754.h | 37 unsigned int exponent:8; member in struct:ieee754_float::__anon45623 42 unsigned int exponent:8; member in struct:ieee754_float::__anon45623 52 unsigned int exponent:8; member in struct:ieee754_float::__anon45624 59 unsigned int exponent:8; member in struct:ieee754_float::__anon45624 65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */ 77 unsigned int exponent:11; member in struct:ieee754_double::__anon45625 85 unsigned int exponent:11; member in struct:ieee754_double::__anon45625 92 unsigned int exponent:11; member in struct:ieee754_double::__anon45625 103 unsigned int exponent:11; member in struct:ieee754_double::__anon45626 112 unsigned int exponent:11 139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45627 146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45627 154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45627 166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45628 175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45628 187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon45628 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
ieee754.h | 37 unsigned int exponent:8; member in struct:ieee754_float::__anon47359 42 unsigned int exponent:8; member in struct:ieee754_float::__anon47359 52 unsigned int exponent:8; member in struct:ieee754_float::__anon47360 59 unsigned int exponent:8; member in struct:ieee754_float::__anon47360 65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */ 77 unsigned int exponent:11; member in struct:ieee754_double::__anon47361 85 unsigned int exponent:11; member in struct:ieee754_double::__anon47361 92 unsigned int exponent:11; member in struct:ieee754_double::__anon47361 103 unsigned int exponent:11; member in struct:ieee754_double::__anon47362 112 unsigned int exponent:11 139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47363 146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47363 154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47363 166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47364 175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47364 187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon47364 [all...] |
/external/chromium_org/v8/test/mjsunit/es6/ |
math-fround.js | 45 var exponent = this.exponent_bits - 1023; 46 if (exponent == -1023) returnSpecial(); 49 return sign * Math.pow(2, exponent) * mantissa; 54 var exponent = this.exponent_bits - 1023; 55 if (exponent == -1023) returnSpecial(); 56 if (exponent > 127) return sign * Infinity; 57 if (exponent < -126) return this.toSingleSubnormal(sign, exponent); 60 return sign * Math.pow(2, exponent) * mantissa; 63 ieee754float.prototype.toSingleSubnormal = function(sign, exponent) { [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
floatnum.c | 43 * Sign exponent mantissa (80 bits) 47 * Exponent is bias 32767. 52 unsigned short exponent; member in struct:yasm_floatnum 79 unsigned short exponent; /* Bias 32767 exponent */ member in struct:POT_Entry_Source_s 142 /* Save decimal exponent */ 149 /* Initialize exponent */ 150 e->f.exponent = s->exponent; 176 dec_exp *= 2; /* Update decimal exponent */ 556 long exponent = (long)flt->exponent; local [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
model.js | 119 var exponent = Number(x.toExponential(this.precision - 1).split('e')[1]); 120 var digits = this.digits_(exponent); 122 var fixed = (Math.abs(exponent) < this.precision && exponent > -7); 132 Model.prototype.digits_ = function(exponent) { 133 return (isNaN(exponent) || exponent < -199 || exponent > 199) ? 0 : 134 (exponent < -99) ? (this.precision - 1 - 5) : 135 (exponent < -9) ? (this.precision - 1 - 4) [all...] |