HomeSort by relevance Sort by last modified time
    Searched full:exponent (Results 76 - 100 of 1644) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
sigcontext32.h 10 unsigned short exponent; member in struct:_fpreg
15 unsigned short exponent; member in struct:_fpxreg
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 416 * new BigDecimal(String value) when exponent is empty.
428 * new BigDecimal(String value) when exponent is empty.
440 * new BigDecimal(String value) when exponent is greater than
453 * new BigDecimal(String value) when exponent is less than
467 * when exponent is Integer.MAX_VALUE.
480 * when exponent is Integer.MIN_VALUE.
492 * new BigDecimal(String value); value does not contain exponent
504 * new BigDecimal(String value); value does not contain exponent
516 * new BigDecimal(String value); value does not contain exponent
528 * new BigDecimal(String value); value does not contain exponent
    [all...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 30 * Holds the maximal exponent for each radix, so that radix<sup>digitFitInInt[radix]</sup>
239 int exponent = resLengthInChars - currentChar - scale - 1; local
247 if ((scale > 0) && (exponent >= -6)) {
248 if (exponent >= 0) {
250 int insertPoint = currentChar + exponent;
262 for (int j = 2; j < -exponent + 1; j++) {
289 if (exponent > 0) {
292 result1.append(Integer.toString(exponent));
342 long exponent = (long)resLengthInChars - (long)currentChar - scale - 1L;
349 if (scale > 0 && exponent >= -6)
431 long exponent = bitLen - 1; local
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
Logic.java 287 String exponent = null; local
292 // Strip "+" and unnecessary 0's from the exponent
293 exponent = result.substring(e + 1);
294 if (exponent.startsWith("+")) {
295 exponent = exponent.substring(1);
297 exponent = String.valueOf(Integer.parseInt(exponent));
316 if (exponent != null) {
317 result = mantissa + 'e' + exponent;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strtod.py 22 (?:E(?P<exp>[-+]?\d+))? # and an optional exponent
49 # compute exponent e for result; may be one too small in the case
129 digits, exponent = n, e
131 s = '{}e{}'.format(digits, exponent)
134 s = '{}e{}'.format(digits * 10**40, exponent - 40)
140 digits, exponent = n, e
142 s = '{}e{}'.format(digits, exponent)
145 s = '{}e{}'.format(digits * 10**40, exponent - 40)
148 exponent -= 1
168 exponent =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strtod.py 22 (?:E(?P<exp>[-+]?\d+))? # and an optional exponent
49 # compute exponent e for result; may be one too small in the case
129 digits, exponent = n, e
131 s = '{}e{}'.format(digits, exponent)
134 s = '{}e{}'.format(digits * 10**40, exponent - 40)
140 digits, exponent = n, e
142 s = '{}e{}'.format(digits, exponent)
145 s = '{}e{}'.format(digits * 10**40, exponent - 40)
148 exponent -= 1
168 exponent =
    [all...]
  /external/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon26622
267 // exp: base-10 exponent
268 // bexp: base-2 exponent (output parameter)
278 int num_hi; /* number of high exponent powers */
280 if (exp > 0) { /* split exponent */
324 // Third argument is base-10 exponent.
341 * 4) exponent and fraction
347 int bexp; /* binary exponent */
349 int sexp; /* scaling exponent */
384 /* At this point we have a 64b fraction and a binary exponent
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon33147
267 // exp: base-10 exponent
268 // bexp: base-2 exponent (output parameter)
278 int num_hi; /* number of high exponent powers */
280 if (exp > 0) { /* split exponent */
324 // Third argument is base-10 exponent.
341 * 4) exponent and fraction
347 int bexp; /* binary exponent */
349 int sexp; /* scaling exponent */
384 /* At this point we have a 64b fraction and a binary exponent
    [all...]
  /external/chromium_org/v8/src/
conversions.cc 126 int exponent = decimal_point - 1; local
127 if (exponent < 0) exponent = -exponent;
128 builder.AddDecimalInteger(exponent);
228 int exponent,
232 if (exponent < 0) {
234 exponent = -exponent;
238 // letter 'e', a minus or a plus depending on the exponent, and
297 int exponent = decimal_point - 1; local
330 int exponent = decimal_point - 1; local
    [all...]
conversions-inl.h 99 int exponent = d.Exponent();
100 if (exponent < 0) {
101 if (exponent <= -Double::kSignificandSize) return 0;
102 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
104 if (exponent > 31) return 0;
105 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
154 int exponent = 0; local
188 exponent = overflow_bits_count;
195 exponent += radix_log_2
    [all...]
  /external/v8/src/
conversions.cc 113 int exponent = decimal_point - 1; local
114 if (exponent < 0) exponent = -exponent;
115 builder.AddDecimalInteger(exponent);
215 int exponent,
219 if (exponent < 0) {
221 exponent = -exponent;
225 // letter 'e', a minus or a plus depending on the exponent, and
284 int exponent = decimal_point - 1; local
317 int exponent = decimal_point - 1; local
    [all...]
conversions-inl.h 94 int exponent = d.Exponent();
95 if (exponent < 0) {
96 if (exponent <= -Double::kSignificandSize) return 0;
97 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
99 if (exponent > 31) return 0;
100 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
149 int exponent = 0; local
183 exponent = overflow_bits_count;
190 exponent += radix_log_2
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbnl.c 19 * scalbnl(x,n) returns x* 2**n computed by exponent
25 * We assume that a long double has a 15-bit exponent. On systems
50 k = u.bits.exp; /* extract exponent */
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
RSAKeyGenParameterSpecTest.java 67 * Assertion: returns public exponent value
77 * Assertion: the public exponent value F0 = 3
85 * Assertion: the public exponent value F0 = 65537
  /external/bison/m4/
exponentf.m4 8 AC_CACHE_CHECK([where to find the exponent in a 'float'],
87 [Define as the word index where to find the exponent of 'float'.])
89 [Define as the bit index in the word where to find bit 0 of the exponent of 'float'.])
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPublicKey.java 71 * return the public exponent.
73 * @return the public exponent.
125 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 73 * return the public exponent.
75 * @return the public exponent.
127 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
  /libcore/luni/src/test/java/tests/security/spec/
RSAKeyGenParameterSpecTest.java 60 * Assertion: returns public exponent value
70 * Assertion: the public exponent value F0 = 3
78 * Assertion: the public exponent value F0 = 65537
  /external/chromium_org/v8/test/cctest/
test-strtod.cc 45 static double StrtodChar(const char* str, int exponent) {
46 return Strtod(StringToVector(str), exponent);
396 int exponent,
404 // Check that the buffer*10^exponent < (0 + kMinDouble)/2.
407 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) <= 0;
411 // Check that the buffer*10^exponent >= boundary between kMaxDouble and inf.
414 return CompareBignumToDiyFp(input_digits, exponent, upper_boundary) >= 0;
419 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) >= 0 &&
420 CompareBignumToDiyFp(input_digits, exponent, upper_boundary) <= 0;
422 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) > 0 &
459 int exponent = DeterministicRandom() % (25*2 + 1) - 25 - length; local
472 int exponent = DeterministicRandom() % (308*2 + 1) - 308 - length; local
    [all...]
  /external/v8/test/cctest/
test-strtod.cc 20 static double StrtodChar(const char* str, int exponent) {
21 return Strtod(StringToVector(str), exponent);
371 int exponent,
379 // Check that the buffer*10^exponent < (0 + kMinDouble)/2.
382 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) <= 0;
386 // Check that the buffer*10^exponent >= boundary between kMaxDouble and inf.
389 return CompareBignumToDiyFp(input_digits, exponent, upper_boundary) >= 0;
394 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) >= 0 &&
395 CompareBignumToDiyFp(input_digits, exponent, upper_boundary) <= 0;
397 return CompareBignumToDiyFp(input_digits, exponent, lower_boundary) > 0 &
433 int exponent = DeterministicRandom() % (25*2 + 1) - 25 - length; local
446 int exponent = DeterministicRandom() % (308*2 + 1) - 308 - length; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGComponentTransferFunctionElement.cpp 39 DEFINE_ANIMATED_NUMBER(SVGComponentTransferFunctionElement, SVGNames::exponentAttr, Exponent, exponent)
48 REGISTER_LOCAL_ANIMATED_PROPERTY(exponent)
147 func.exponent = exponentCurrentValue();
  /external/chromium_org/third_party/WebKit/Source/wtf/
DecimalNumber.h 48 // Zero should always have exponent 0.
66 // Zero should always have exponent 0.
81 // Zero should always have exponent 0.
92 int exponent() const { return m_exponent; } function in class:WTF::DecimalNumber
  /external/chromium_org/third_party/freetype/src/cff/
cffparse.c 139 FT_Long result, number, exponent; local
150 exponent = 0;
182 /* Increase exponent if we can't add the digit. */
226 /* Read exponent, if any. */
254 /* Arbitrarily limit exponent. */
255 if ( exponent > 1000 )
258 exponent = exponent * 10 + nib;
262 exponent = -exponent;
    [all...]
  /external/freetype/src/cff/
cffparse.c 139 FT_Long result, number, exponent; local
150 exponent = 0;
182 /* Increase exponent if we can't add the digit. */
226 /* Read exponent, if any. */
254 /* Arbitrarily limit exponent. */
255 if ( exponent > 1000 )
258 exponent = exponent * 10 + nib;
262 exponent = -exponent;
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/
simple_water.frag 42 const float exponent = 64.0;
92 // vec4 specular =vec4(pow(max(dot(H, vNorm), 0.0), exponent));
97 // vec4 specular =vec4( pow(max(dot(R, E), 0.0),exponent));
108 stemp = pow(stemp, exponent);

Completed in 870 milliseconds

1 2 34 5 6 7 8 91011>>