HomeSort by relevance Sort by last modified time
    Searched refs:exponent (Results 151 - 175 of 271) sorted by null

1 2 3 4 5 67 8 91011

  /external/webkit/Source/JavaScriptCore/runtime/
NumberPrototype.cpp 162 // exponent, all values that can be represented using a decimal fraction will
194 // demands a minimum of (exponent + 1) digits to represent a number, for example
197 unsigned length = number.exponent() >= -6 && number.exponent() < significantFigures
  /frameworks/native/opengl/tools/glgen/specs/gles11/
checks.spec 80 glQueryMatrixxOES check mantissa 16 check exponent 16 return -1
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 227 ALOGE("public exponent size wasn't what was expected");
492 ALOGW("Could not convert private exponent");
574 ALOGW("Could not convert exponent 1");
582 ALOGW("Could not convert exponent 2");
645 ByteArray exponent(new CK_BYTE[attributes[1].ulValueLen], attributes[1].ulValueLen);
648 attributes[1].pValue = exponent.get();
657 ALOGV("modulus is %d (ret=%d), exponent is %d (ret=%d)",
659 exponent.length(), attributes[1].ulValueLen);
667 exponent.setLength(attributes[1].ulValueLen);
682 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(exponent.get()), exponent.length()
    [all...]
  /external/aac/libAACenc/src/
metadata_compressor.cpp 400 FIXP_DBL exponent, result; local
413 /* exponent = (-1.0/((t) * (f))) */
414 exponent = fDivNorm(METADATA_FRACT_SCALE, product, &e_res);
415 exponent = scaleValue(exponent, e_res-METADATA_INT_BITS); /* convert to METADATA_FRACT */
417 /* exponent * ld(e) */
418 exponent = fMult(exponent,FIXP_ILOG2_DIV2)<<1; /* e^(x) = 2^(x*ld(e)) */
421 result = f2Pow(-exponent, DFRACT_BITS-1-METADATA_FRACT_BITS, &e_res);
    [all...]
  /device/samsung/tuna/keymaster/
keymaster_tuna.cpp 223 ALOGE("public exponent size wasn't what was expected");
488 ALOGW("Could not convert private exponent");
570 ALOGW("Could not convert exponent 1");
578 ALOGW("Could not convert exponent 2");
641 ByteArray exponent(new CK_BYTE[attributes[1].ulValueLen], attributes[1].ulValueLen);
644 attributes[1].pValue = exponent.get();
653 ALOGV("modulus is %d, exponent is %d", modulus.length(), exponent.length());
668 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(exponent.get()), exponent.length()
    [all...]
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 349 BigInteger exponent = readBigInteger(in, exponentLength); local
353 return factory.generatePublic(new RSAPublicKeySpec(modulus, exponent));
463 BigInteger exponent = key.getPublicExponent(); local
465 int exponentLength = BigIntegerLength(exponent);
473 writeBigInteger(out, exponent);
  /external/aac/libAACdec/src/
block.cpp 404 UINT exponent = 32 - freeBits; local
415 value = fMultDiv2((FIXP_DBL)temp, MantissaTabler[exponent]);
418 scaleValueInPlace(&value, scale + ExponentTabler[exponent] + 1);
  /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...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java     [all...]
  /external/skia/bench/
MathBench.cpp 180 int exponent = bits << 1 >> 24; local
181 return exponent != 0xFF;
  /external/valgrind/main/include/vki/
vki-x86-linux.h 199 unsigned short exponent; member in struct:_vki_fpreg
204 unsigned short exponent; member in struct:_vki_fpxreg
vki-mips32-linux.h 220 unsigned short exponent; member in struct:_vki_fpreg
225 unsigned short exponent; member in struct:_vki_fpxreg
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 1063 /*boundary case -- increment exponent*/
1071 /* boundary case -- decrement exponent */
    [all...]
  /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);
  /external/icu4c/i18n/
decNumberLocal.h 152 #define DECNUMMAXE 999999999 /* maximum adjusted exponent ditto */
153 #define DECNUMMINE -999999999 /* minimum adjusted exponent ditto */
158 #error Maximum exponent mismatch
161 #error Minimum exponent mismatch
283 Int exponent; /* Unadjusted signed exponent (q), or */ member in struct:__anon8658
287 /* Test if exponent or bcdnum exponent must be a special, etc. */
291 #define NUMISSPECIAL(num) (EXPISSPECIAL((num)->exponent))
341 /* DFISINT -- test for finite and exponent q=0 *
    [all...]
decimfmt.cpp 1551 int32_t exponent = digits.getDecimalAt(); local
    [all...]
nfsubs.cpp 89 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status) {
90 divisor = uprv_pow(radix, exponent);
141 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status) {
142 divisor = uprv_pow(radix, exponent);
530 * @param exponent The exponent of the divisor
533 NFSubstitution::setDivisor(int32_t /*radix*/, int32_t /*exponent*/, UErrorCode& /*status*/) {
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 69 a 16-bit signed exponent, and the significand as an array of
71 exponent is within the range of the format, and if the number is
74 right so that the exponent is maintained at the format's minimum,
77 significant; the exponent and significand of such numbers is not
79 significands, 0 for zero exponent, all 1 bits for infinity
80 exponent. For NaNs the sign and significand are deterministic,
82 operations. The exponent is implicitly all 1 bits.
94 from extended exponent range) (hard).
449 /* The exponent - a signed number. */
450 exponent_t exponent; member in class:llvm::APFloat
    [all...]
  /external/srec/srec/EventLog/src/
riff.c 182 int sign, exponent, mantissa, sample; local
186 exponent = (ulawbyte >> 4) & 0x07;
188 sample = exp_lut[exponent] + (mantissa << (exponent + 3));
  /external/v8/src/
utils.h 767 // Calculate 10^exponent.
768 inline int TenToThe(int exponent) {
769 ASSERT(exponent <= 9);
770 ASSERT(exponent >= 1);
772 for (int i = 1; i < exponent; i++) answer *= 10;
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 166 WebRtc_UWord32 exponent; local
284 exponent = WEBRTC_SPL_UMUL(0x0000004C, msec);
286 /* do the approx with positive exponent so that value is actually rf^-1
288 reductionFactor = WEBRTC_SPL_RSHIFT_U32(0x01000000 | (exponent & 0x00FFFFFF),
289 WEBRTC_SPL_RSHIFT_U32(exponent, 24));
    [all...]
  /libcore/luni/src/main/java/java/util/
Scanner.java     [all...]
  /system/core/libmincrypt/
rsa_e_3.c 177 if (key->exponent != 3) {
178 return 0; // Wrong exponent.
  /external/libvorbis/doc/
07-floor1.tex 133 11) iterate [j] over the range 0 ... (2 exponent [floor1_class_subclasses] element [i]) - 1 \{
143 16) vector [floor1_X_list] element [1] = 2 exponent [rangebits];
195 9) [csub] = (2 exponent [cbits])-1
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
dc.sed 299 fraction in exponent ignored

Completed in 2199 milliseconds

1 2 3 4 5 67 8 91011