/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/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...] |
/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 | 115 int exponent, 128 exponent + (buffer.length() - kMaxSignificantDecimalDigits); 168 // Compute the binary exponent. 169 int exponent = 0; local 170 *result = DiyFp(significand, exponent); 177 int exponent, 192 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we 197 if (exponent < 0 && -exponent < kExactPowersOfTenSize) [all...] |
/external/v8/src/ |
strtod.cc | 115 int exponent, 128 exponent + (buffer.length() - kMaxSignificantDecimalDigits); 167 // Compute the binary exponent. 168 int exponent = 0; local 169 *result = DiyFp(significand, exponent); 176 int exponent, 192 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we 197 if (exponent < 0 && -exponent < kExactPowersOfTenSize) [all...] |
/external/compiler-rt/lib/ |
fixdfsi.c | 25 // Break a into sign, exponent, significand 29 const int exponent = (aAbs >> significandBits) - exponentBias; local 32 // If 0 < exponent < significandBits, right shift to get the result. 33 if ((unsigned int)exponent < significandBits) { 34 return sign * (significand >> (significandBits - exponent)); 37 // If exponent is negative, the result is zero. 38 else if (exponent < 0) { 42 // If significandBits < exponent, left shift to get the result. This shift 47 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));
|
floatsisf.c | 38 // Exponent of (fp_t)a is the width of abs(a). 39 const int exponent = (aWidth - 1) - __builtin_clz(a); local 43 if (exponent <= significandBits) { 44 const int shift = significandBits - exponent; 47 const int shift = exponent - significandBits; 54 // Insert the exponent 55 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatunsisf.c | 30 // Exponent of (fp_t)a is the width of abs(a). 31 const int exponent = (aWidth - 1) - __builtin_clz(a); local 35 if (exponent <= significandBits) { 36 const int shift = significandBits - exponent; 39 const int shift = exponent - significandBits; 46 // Insert the exponent 47 result += (rep_t)(exponent + exponentBias) << 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/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
ieee754.h | 37 unsigned int exponent:8; member in struct:ieee754_float::__anon37409 42 unsigned int exponent:8; member in struct:ieee754_float::__anon37409 52 unsigned int exponent:8; member in struct:ieee754_float::__anon37410 59 unsigned int exponent:8; member in struct:ieee754_float::__anon37410 65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */ 77 unsigned int exponent:11; member in struct:ieee754_double::__anon37411 85 unsigned int exponent:11; member in struct:ieee754_double::__anon37411 92 unsigned int exponent:11; member in struct:ieee754_double::__anon37411 103 unsigned int exponent:11; member in struct:ieee754_double::__anon37412 112 unsigned int exponent:11 139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37413 146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37413 154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37413 166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37414 175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37414 187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon37414 [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
ieee754.h | 37 unsigned int exponent:8; member in struct:ieee754_float::__anon38999 42 unsigned int exponent:8; member in struct:ieee754_float::__anon38999 52 unsigned int exponent:8; member in struct:ieee754_float::__anon39000 59 unsigned int exponent:8; member in struct:ieee754_float::__anon39000 65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */ 77 unsigned int exponent:11; member in struct:ieee754_double::__anon39001 85 unsigned int exponent:11; member in struct:ieee754_double::__anon39001 92 unsigned int exponent:11; member in struct:ieee754_double::__anon39001 103 unsigned int exponent:11; member in struct:ieee754_double::__anon39002 112 unsigned int exponent:11 139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39003 146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39003 154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39003 166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39004 175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39004 187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon39004 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
ieee754.h | 37 unsigned int exponent:8; member in struct:ieee754_float::__anon40514 42 unsigned int exponent:8; member in struct:ieee754_float::__anon40514 52 unsigned int exponent:8; member in struct:ieee754_float::__anon40515 59 unsigned int exponent:8; member in struct:ieee754_float::__anon40515 65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */ 77 unsigned int exponent:11; member in struct:ieee754_double::__anon40516 85 unsigned int exponent:11; member in struct:ieee754_double::__anon40516 92 unsigned int exponent:11; member in struct:ieee754_double::__anon40516 103 unsigned int exponent:11; member in struct:ieee754_double::__anon40517 112 unsigned int exponent:11 139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40518 146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40518 154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40518 166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40519 175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40519 187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40519 [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...] |
/frameworks/base/opengl/java/android/opengl/ |
GLES10Ext.java | 28 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) 33 int[] exponent, 37 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) 41 java.nio.IntBuffer exponent
|