HomeSort by relevance Sort by last modified time
    Searched refs:exponent (Results 51 - 75 of 111) sorted by null

1 23 4 5

  /libcore/luni/src/main/java/java/math/
BigDecimal.java 320 // Accumulating all digits until a possible exponent
338 // An exponent was found
504 // Extracting the exponent, note that the bias is 1023
2294 long exponent = -(long)scale + end - begin; local
2339 long exponent = -(long)scale + end - begin; local
2635 int exponent = 1076; \/\/ bias + 53 local
    [all...]
BigInteger.java     [all...]
  /external/chromium/third_party/icu/source/i18n/
nfrule.cpp 35 , exponent(0)
134 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
171 // both rules have the same radix and exponent (i.e., the
174 rule2->exponent = rule1->exponent;
213 * exponent according to the descriptor. (If the description doesn't
321 // accordingly, and recalculate the rule's exponent
328 exponent = expectedExponent();
333 // decrement the exponent (unless the exponent is already 0)
    [all...]
nfrs.h 86 // raise radix to the power exponent, only non-negative exponents
87 int64_t util64_pow(int32_t radix, uint32_t exponent);
decimfmt.cpp 1267 int32_t exponent = digits.fDecimalAt; local
    [all...]
nfsubs.cpp 84 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status) {
85 divisor = uprv_pow(radix, exponent);
133 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status) {
134 divisor = uprv_pow(radix, exponent);
503 * @param exponent The exponent of the divisor
506 NFSubstitution::setDivisor(int32_t /*radix*/, int32_t /*exponent*/, UErrorCode& /*status*/) {
    [all...]
  /external/icu4c/i18n/
nfrule.cpp 35 , exponent(0)
134 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
171 // both rules have the same radix and exponent (i.e., the
174 rule2->exponent = rule1->exponent;
213 * exponent according to the descriptor. (If the description doesn't
321 // accordingly, and recalculate the rule's exponent
328 exponent = expectedExponent();
333 // decrement the exponent (unless the exponent is already 0)
    [all...]
nfrs.h 86 // raise radix to the power exponent, only non-negative exponents
87 int64_t util64_pow(int32_t radix, uint32_t exponent);
decNumberLocal.h 164 #define DECNUMMAXE 999999999 /* maximum adjusted exponent ditto */
165 #define DECNUMMINE -999999999 /* minimum adjusted exponent ditto */
170 #error Maximum exponent mismatch
173 #error Minimum exponent mismatch
295 Int exponent; /* Unadjusted signed exponent (q), or */ member in struct:__anon4050
299 /* Test if exponent or bcdnum exponent must be a special, etc. */
303 #define NUMISSPECIAL(num) (EXPISSPECIAL((num)->exponent))
353 /* DFISINT -- test for finite and exponent q=0 *
    [all...]
  /frameworks/base/opengl/libagl/
fp.h 53 inline int exponent(GLfloat) CONST;
144 int exponent(GLfloat v) { function in namespace:android::gl
  /external/webkit/WebCore/platform/graphics/filters/
FEComponentTransfer.cpp 144 double exponent = transferFunction.exponent; // RCVT doesn't like passing a double and a float to pow, so promote this to double local
145 double val = 255.0 * (transferFunction.amplitude * pow((i / 255.0), exponent) + transferFunction.offset);
  /frameworks/base/media/libstagefright/codecs/aacdec/
fft_rx4_short.cpp 66 exponent returns a shift to compensate the scaling introduced by
116 RETURN( exponent )
227 Int exponent = 0; local
238 exponent = exp; /* keeps track of # of shifts */
466 return (exponent);
  /libcore/luni/src/main/java/java/lang/
RealToString.java 198 int exponent = k; local
207 if (k == exponent - 1) {
211 IntegralToString.appendInt(sb, exponent);
  /bionic/libc/netbsd/resolv/
res_debug.c 711 int mantissa, exponent; local
714 exponent = (int)((prec >> 0) & 0x0f) % 10;
716 val = mantissa * poweroften[exponent];
728 int exponent; local
747 for (exponent = 0; exponent < 9; exponent++)
748 if (cmval < poweroften[exponent+1])
751 mantissa = cmval / poweroften[exponent];
755 retval = (mantissa << 4) | exponent;
    [all...]
  /system/core/libpixelflinger/
fixed.cpp 26 int32_t gglRecipQNormalized(int32_t x, int* exponent)
33 *exponent = 0;
55 *exponent = 30-lz-1;
  /external/chromium/third_party/icu/source/tools/genprops/
store.c 280 (int)p->numericType, (long)p->numericValue, (unsigned long)p->denominator, p->exponent);
296 exp=p->exponent;
343 /* split the value into mantissa and exponent, base 10 */
  /external/libvpx/vp8/common/
boolcoder.h 146 uint exponent(Index i) const
167 return 1 + (((R - 1) * mantissa(i)) >> exponent(i));
249 The exponent e is between 0 and (2**Ebits) - 1,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 105 byte[] exponent = key.getPublicExponent().toByteArray();
107 return verifySignature(message, signature, algorithm, modulus, exponent) == 1;
111 String algorithm, byte[] modulus, byte[] exponent);
  /external/chromium/net/third_party/nss/ssl/
ssl3prot.h 226 SECItem exponent; member in struct:__anon2754
  /external/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon7689
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/android/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon11224
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/webkit/WebCore/svg/
SVGParserUtilities.cpp 57 int integer, exponent; local
62 exponent = 0;
96 // read the exponent part
101 // read the sign of the exponent
109 // There must be an exponent
114 exponent *= 10;
115 exponent += *ptr - '0';
121 number *= sign * static_cast<FloatType>(pow(10.0, expsign * exponent));
  /external/libpng/contrib/gregbook/
wpng.c 189 /* First get the default value for our display-system exponent, i.e.,
190 * the product of the CRT exponent and the exponent corresponding to
199 /* third-party utilities can modify the default LUT exponent */
239 double exponent = atof(p); local
241 if (exponent > 0.0)
242 default_gamma = 1.0 / exponent;
407 " exp \ttransfer-function exponent (``gamma'') of the image in\n"
410 "\t\t inverse of display-system exponent, i.e., 1 / (LUT * CRT)\n"
411 "\t\t (where LUT = lookup-table exponent and CRT = CRT exponent;\n
    [all...]
  /frameworks/base/opengl/tools/glgen/specs/gles11/
checks.spec 29 glQueryMatrixxOES check mantissa 16 check exponent 16 return -1
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 742 int[] exponent, int exponentOffset) {
744 exponent, exponentOffset);
747 public int glQueryMatrixxOES(IntBuffer mantissa, IntBuffer exponent) {
748 return mgl10Ext.glQueryMatrixxOES(mantissa, exponent);

Completed in 1121 milliseconds

1 23 4 5