HomeSort by relevance Sort by last modified time
    Searched refs:exponent (Results 1 - 25 of 687) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES10Ext.spec 1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
  /external/v8/src/
strtod.h 15 double Strtod(Vector<const char> buffer, int exponent);
strtod.cc 93 int exponent,
106 exponent + (buffer.length() - kMaxSignificantDecimalDigits);
146 // Compute the binary exponent.
147 int exponent = 0; local
148 *result = DiyFp(significand, exponent);
155 int exponent,
171 // If the 10^exponent (resp. 10^-exponent) fits into a double too then we
176 if (exponent < 0 && -exponent < kExactPowersOfTenSize)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
log2.h 49 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
56 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
  /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
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10Ext.java 27 int[] exponent,
33 java.nio.IntBuffer exponent
  /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::__anon38524
42 unsigned int exponent:8; member in struct:ieee754_float::__anon38524
52 unsigned int exponent:8; member in struct:ieee754_float::__anon38525
59 unsigned int exponent:8; member in struct:ieee754_float::__anon38525
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon38526
85 unsigned int exponent:11; member in struct:ieee754_double::__anon38526
92 unsigned int exponent:11; member in struct:ieee754_double::__anon38526
103 unsigned int exponent:11; member in struct:ieee754_double::__anon38527
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38528
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38528
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38528
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38529
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38529
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon38529
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ieee754.h 37 unsigned int exponent:8; member in struct:ieee754_float::__anon40426
42 unsigned int exponent:8; member in struct:ieee754_float::__anon40426
52 unsigned int exponent:8; member in struct:ieee754_float::__anon40427
59 unsigned int exponent:8; member in struct:ieee754_float::__anon40427
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon40428
85 unsigned int exponent:11; member in struct:ieee754_double::__anon40428
92 unsigned int exponent:11; member in struct:ieee754_double::__anon40428
103 unsigned int exponent:11; member in struct:ieee754_double::__anon40429
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40430
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40430
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40430
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40431
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40431
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon40431
    [all...]
  /external/crcalc/src/com/hp/creals/
StringFloatRep.java 45 exponent = e;
57 * The radix of the representation. Also the base of the exponent field.
61 * The mantissa is scaled by radix**exponent.
63 public int exponent; field in class:StringFloatRep
66 * Produce a textual representation including the sign and exponent.
70 (sign < 0? "-" : "") + mantissa + "E" + Integer.toString(exponent)
  /external/valgrind/VEX/priv/
host_generic_maddf.c 86 unsigned int exponent:11; member in struct:vg_ieee754_double::__anon24412
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...]
  /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/compiler-rt/lib/builtins/
floatunditf.c 27 // Exponent of (fp_t)a is the width of abs(a).
28 const int exponent = (aWidth - 1) - __builtin_clzll(a); local
32 const int shift = significandBits - exponent;
35 // Insert the exponent
36 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsidf.c 31 // Exponent of (fp_t)a is the width of abs(a).
32 const int exponent = (aWidth - 1) - __builtin_clz(a); local
36 const int shift = significandBits - exponent;
39 // Insert the exponent
40 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsitf.c 27 // Exponent of (fp_t)a is the width of abs(a).
28 const int exponent = (aWidth - 1) - __builtin_clz(a); local
32 const int shift = significandBits - exponent;
35 // Insert the exponent
36 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsisf.c 39 // Exponent of (fp_t)a is the width of abs(a).
40 const int exponent = (aWidth - 1) - __builtin_clz(a); local
44 if (exponent <= significandBits) {
45 const int shift = significandBits - exponent;
48 const int shift = exponent - significandBits;
55 // Insert the exponent
56 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsisf.c 31 // Exponent of (fp_t)a is the width of abs(a).
32 const int exponent = (aWidth - 1) - __builtin_clz(a); local
36 if (exponent <= significandBits) {
37 const int shift = significandBits - exponent;
40 const int shift = exponent - significandBits;
47 // Insert the exponent
48 result += (rep_t)(exponent + exponentBias) << significandBits;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
pow2.h 103 Word16 exponent, /* (i) : Integer part. (range: 0<=val<=30) */
  /external/boringssl/src/crypto/bn/
rsaz_exp.h 49 const BN_ULONG base_norm[16], const BN_ULONG exponent[16],
54 const BN_ULONG base_norm[8], const BN_ULONG exponent[8],
  /toolchain/binutils/binutils-2.25/libiberty/
copysign.c 11 unsigned int exponent: 11; member in struct:__anon75840::__anon75841
21 unsigned int exponent: 11; member in struct:__anon75840::__anon75842
54 unsigned int exponent :11; member in struct:__anon75844::__anon75845
69 unsigned int exponent: 11; member in struct:__anon75844::__anon75846
91 unsigned int exponent: 8; member in struct:__anon75848::__anon75849
98 unsigned int exponent:8; member in struct:__anon75848::__anon75850
116 unsigned int exponent: 8; member in struct:__anon75851::__anon75852
124 unsigned int exponent:8; member in struct:__anon75851::__anon75853
  /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/testng/src/test/java/test/tmp/
ExponentTest.java 9 @Test(suiteName = "Exponent suite", testName = "Exponent test")
28 public void testExponent(double exponent, double expected) {
29 ppp("COMPARING " + myExpFunction(exponent) + " AND " + expected);
30 assertEquals(myExpFunction(exponent), expected);
37 private double myExpFunction(double exponent) {
38 return Math.exp(exponent);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
log2.c 41 * normalized, and exp is the normalisation exponent
48 * 1- exponent = 30-norm_exponent
59 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
67 *exponent = 0;
71 *exponent = (30 - exp);
100 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
107 Log2_norm ((L_x << exp), exp, exponent, fraction);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
SpotLight.java 30 public float exponent; field in class:SpotLight
62 public SpotLight setExponent(float exponent) {
63 this.exponent = exponent;
68 return set(copyFrom.color, copyFrom.position, copyFrom.direction, copyFrom.intensity, copyFrom.cutoffAngle, copyFrom.exponent);
72 final float cutoffAngle, final float exponent) {
78 this.exponent = exponent;
83 final float intensity, final float cutoffAngle, final float exponent) {
89 this.exponent = exponent
    [all...]

Completed in 1144 milliseconds

1 2 3 4 5 6 7 8 91011>>