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

1 2 3 4 56 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
ucontext.h 97 unsigned short int exponent; member in struct:_libc_fpxreg
205 unsigned short int exponent; member in struct:_libc_fpreg
  /external/bison/lib/
float.in.h 98 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon2283
  /external/icu4c/i18n/
nfrs.h 81 // raise radix to the power exponent, only non-negative exponents
82 int64_t util64_pow(int32_t radix, uint32_t exponent);
  /external/webkit/Source/JavaScriptCore/wtf/
DecimalNumber.h 47 // Zero should always have exponent 0.
65 // Zero should always have exponent 0.
80 // Zero should always have exponent 0.
91 int exponent() const { return m_exponent; } function in class:WTF::DecimalNumber
  /bootable/recovery/
verifier.cpp 234 key->exponent = 3;
239 key->exponent = 65537;
277 LOGI("read key e=%d\n", key->exponent);
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 285 int32_t exponent = (mantissa >> 4) & 7; local
286 int32_t segment = exponent + 1;
291 int32_t abs = (0x80l << exponent) + step * mantissa + step / 2 - 4 * 33;
  /libcore/luni/src/main/java/java/lang/
RealToString.java 200 int exponent = k; local
209 if (k == exponent - 1) {
213 IntegralToString.appendInt(sb, exponent);
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.c 150 * @param exponent [in] Exponent number
158 uint32_t exponent,
189 pTci->rsagenkey.exponent = exponent;
839 * |--key metadata--|--public modulus--|--public exponent--|--private exponent--|
842 * |--key metadata--|--public modulus--|--public exponent--|--P--|--Q--|--DP--|--DQ--|--Qinv--|
950 * Retrieves public key daya (modulus and exponent) from wrapped key data
956 * @param exponent [out] Pointer to public key exponent dat
    [all...]
  /bionic/libc/netbsd/resolv/
res_debug.c 712 int mantissa, exponent; local
715 exponent = (int)((prec >> 0) & 0x0f) % 10;
717 val = mantissa * poweroften[exponent];
729 int exponent; local
748 for (exponent = 0; exponent < 9; exponent++)
749 if (cmval < poweroften[exponent+1])
752 mantissa = cmval / poweroften[exponent];
756 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/aac/libSYS/src/
wav_file.cpp 335 INT sign, exponent, mantissa, sample ; local
339 exponent = (ulawbyte >> 4) & 0x07 ;
342 sample = exp_lut[exponent] + (mantissa << (exponent + 3)) ;
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 167 EIGENTYPE exponent = func.m_exponent; \
169 VMLOP(&size, (const VMLTYPE*)src, (const VMLTYPE*)&exponent, \
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 121 Cwise<ExpressionType>::pow(const Scalar& exponent) const
123 return EIGEN_CWISE_UNOP_RETURN_TYPE(internal::scalar_pow_op)(_expression(), internal::scalar_pow_op<Scalar>(exponent));
Cwise.h 94 const EIGEN_CWISE_UNOP_RETURN_TYPE(internal::scalar_pow_op) pow(const Scalar& exponent) const;
  /external/icu4c/common/
putilimp.h 301 * Floating point utility to calculate d to the power of exponent (d^exponent).
304 U_INTERNAL double U_EXPORT2 uprv_pow(double d, double exponent);
306 * Floating point utility to calculate 10 to the power of exponent (10^exponent).
309 U_INTERNAL double U_EXPORT2 uprv_pow10(int32_t exponent);
  /external/libxml2/
triostr.c 973 unsigned long exponent = 0;
1012 exponent *= 10;
1013 exponent += (*source - '0');
1018 /* For later use with exponent */
1061 exponent *= (int)base;
1062 exponent += (*source - '0');
1069 if (exponent != 0)
1072 value /= pow(base, (double)exponent);
1074 value *= pow(base, (double)exponent);
    [all...]
  /external/v8/src/
bignum.cc 175 // If this has a greater exponent than other append zero-bigits to this.
180 // aaaaaaaaaaa 0000 (where the 0s represent a's exponent)
302 void Bignum::MultiplyByPowerOfTen(int exponent) {
321 ASSERT(exponent >= 0);
322 if (exponent == 0) return;
325 // We shift by exponent at the end just before returning.
326 int remaining_exponent = exponent;
338 ShiftLeft(exponent);
407 // Don't forget to update the used_digits and the exponent.
644 // The exponent encodes 0-bigits. So if there are more 0-digits in 'a' tha
    [all...]
  /external/openssh/
ssh-agent.c 472 BIGNUM *exponent; local
531 if ((exponent = BN_new()) == NULL)
535 buffer_get_bignum2(&e->request, exponent);
539 if (EC_KEY_set_private_key(k->ecdsa, exponent) != 1)
547 BN_clear_free(exponent);
556 if ((exponent = BN_new()) == NULL)
558 buffer_get_bignum2(&e->request, exponent);
559 if (EC_KEY_set_private_key(k->ecdsa, exponent) != 1)
566 BN_clear_free(exponent);
    [all...]
  /external/libvorbis/doc/
09-helper.tex 59 3) [exponent] = ( [x] bitwise AND 0x7fe00000) shifted right 21 bits (unsigned result)
61 5) return [mantissa] * ( 2 ^ ( [exponent] - 788 ) )
  /external/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon15570
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...]
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.h 122 void print_ampdu_length(__u8 exponent);
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 63 unsigned int exponent:15; member in struct:ieee854_long_double::__anon22076
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...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /system/core/libmincrypt/
rsa_e_f4.c 170 if (key->exponent != 65537) {
171 return 0; // Wrong exponent.
  /external/skia/legacy/include/core/
SkScalar.h 59 int exponent = bits << 1 >> 24; local
60 return exponent != 0xFF;

Completed in 2363 milliseconds

1 2 3 4 56 7 8 91011