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

1 2 3 4 5 67 8 91011>>

  /toolchain/binutils/binutils-2.27/opcodes/
tic30-dis.c 277 unsigned long exponent, sign, mant; local
294 exponent = tmsfloat & 0xFF000000;
295 if (exponent == 0x80000000)
300 exponent += 0x7F000000;
303 if (exponent == 0xFF000000)
320 exponent >>= 1;
325 exponent += mant & 0x00800000;
326 exponent &= 0x7F800000;
330 sign = mant = exponent = 0;
331 tmsfloat = sign | exponent | mant
    [all...]
  /external/freetype/src/psaux/
psconv.c 274 /* read exponent, if any */
277 FT_Long exponent; local
283 exponent = PS_Conv_ToInt( &p, limit );
288 /* arbitrarily limit exponent */
289 if ( exponent > 1000 )
291 else if ( exponent < -1000 )
294 power_ten += exponent;
  /frameworks/base/core/jni/
android_opengl_GLES10Ext.cpp 457 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
470 GLint *exponent = (GLint *) 0; local
498 _exceptionMessage = "exponent == null";
516 exponent = exponent_base + exponentOffset;
520 (GLint *)exponent
538 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
553 GLint *exponent = (GLint *) 0; local
571 _exceptionMessage = "exponent == null";
574 exponent = (GLint *)getPointer(_env, exponent_buf, (jarray*)&_exponentArray, &_exponentRemaining, &_exponentBufferOffset);
585 if (exponent == NULL)
    [all...]
  /external/adhd/cras/src/dsp/tests/
dsp_util_test.c 193 inf.ieee.exponent = 0xfe;
197 inf.ieee.exponent = 0xfe;
237 denorm.ieee.exponent = 0;
241 denorm.ieee.exponent = 0;
253 nan.ieee.exponent = 0xff;
257 nan.ieee.exponent = 0xff;
  /external/iw/
util.c 499 * Max AMPDU length = (2 ^ (13 + exponent)) - 1 bytes
501 static __u32 compute_ampdu_length(__u8 exponent)
503 switch (exponent) {
528 void print_ampdu_length(__u8 exponent)
532 max_ampdu_length = compute_ampdu_length(exponent);
535 printf("\t\tMaximum RX AMPDU length %d bytes (exponent: 0x0%02x)\n",
536 max_ampdu_length, exponent);
539 "(exponent: %d)\n", exponent);
  /external/webrtc/webrtc/base/
opensslidentity.cc 51 BIGNUM* exponent = BN_new(); local
53 if (!pkey || !exponent || !rsa ||
54 !BN_set_word(exponent, key_params.rsa_params().pub_exp) ||
55 !RSA_generate_key_ex(rsa, key_length, exponent, NULL) ||
58 BN_free(exponent);
64 BN_free(exponent);
  /external/icu/icu4c/source/i18n/
digitformatter.h 108 * Options for formatting the exponent.
242 const VisibleDigits &exponent,
280 const VisibleDigits &exponent,
digitlst.h 103 * 10 exponent associated with it. The value represented by a DigitList
106 * decimal point, by 10^exponent.
121 * digitList exponent = decNumber exponent + digit count
181 * inefficient, and the interaction with the exponent value is confusing.
303 /** Reduce, or normalize. Removes trailing zeroes, adjusts exponent appropriately. */
306 /** Remove trailing fraction zeros, adjust exponent accordingly. */
364 * Gets the upper bound exponent for this value. For 987, returns 3
371 * Gets the lower bound exponent for this value. For 98.7, returns -1
374 int32_t getLowerExponent() const { return fDecNumber->exponent; }
    [all...]
nfsubs.h 92 * @param exponent The exponent of the divisor
94 virtual void setDivisor(int32_t radix, int16_t exponent, UErrorCode& status);
  /external/skia/tests/
ScalarTest.cpp 79 int exponent = bits << 1 >> 24; local
80 return exponent != 0xFF;
  /external/skqp/tests/
ScalarTest.cpp 79 int exponent = bits << 1 >> 24; local
80 return exponent != 0xFF;
  /external/tensorflow/tensorflow/core/framework/
bfloat16_test.cc 32 float BinaryToFloat(uint32_t sign, uint32_t exponent, uint32_t high_mantissa,
34 return bit_cast<float>((sign << 31) + (exponent << 23) +
  /frameworks/native/opengl/libagl/
fp.h 53 inline int exponent(GLfloat) CONST;
144 int exponent(GLfloat v) { function in namespace:android::gl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
ucontext.h 97 unsigned short int exponent; member in struct:_libc_fpxreg
205 unsigned short int exponent; member in struct:_libc_fpreg
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11326.go 13 // binary exponent, so these constants cannot be represented anymore
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11326.go 13 // binary exponent, so these constants cannot be represented anymore
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 79 * by raising the underflow flag for numbers less with exponent less than
80 * expMin, but don't flush to zero until the exponent reaches MIN_EXP-digits.
101 /** The minimum exponent before underflow is signaled. Flush to zero
105 /** The maximum exponent before overflow is signaled and results flushed
169 /** Exponent. */
267 int exponent = (int) ((bits & 0x7ff0000000000000L) >> 52) - 1023; local
269 if (exponent == -1023) {
275 exponent++;
279 exponent--;
285 if (exponent == 1024)
2325 int exponent = (int)(y.log10() * 3.32); local
    [all...]
  /build/make/core/clang/
config.mk 17 shift-exponent \
  /cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
RSUtils.java 58 int exponent = minExponent + r.nextInt(maxExponent - minExponent); local
60 double rand = sign * mantissa * Math.pow(2.0, exponent);
109 int exponent = minExponent + r.nextInt(maxExponent - minExponent); local
111 float rand = sign * mantissa * (float) Math.pow(2.0, exponent);
  /external/gemmlowp/fixedpoint/
fixedpoint_neon.h 270 inline int32x4_t RoundingDivideByPOT(int32x4_t x, int exponent) {
271 const int32x4_t shift_vec = vdupq_n_s32(-exponent);
278 inline int16x8_t RoundingDivideByPOT(int16x8_t x, int exponent) {
279 const int16x8_t shift_vec = vdupq_n_s16(-exponent);
285 template <int Exponent>
286 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, 1> {
287 static int32x4_t eval(int32x4_t x) { return vqshlq_n_s32(x, Exponent); }
290 template <int Exponent>
291 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, -1> {
295 return vrshrq_n_s32(fixed_up_x, -Exponent);
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidGlobal.cpp 64 exponent = unsignedInteger;
  /prebuilts/go/darwin-x86/src/strconv/
fp_test.go 28 // Wrapper around strconv.ParseFloat(x, 64). Handles dddddp+ddd (binary exponent)
72 // Wrapper around strconv.ParseFloat(x, 32). Handles dddddp+ddd (binary exponent)
  /prebuilts/go/linux-x86/src/strconv/
fp_test.go 28 // Wrapper around strconv.ParseFloat(x, 64). Handles dddddp+ddd (binary exponent)
72 // Wrapper around strconv.ParseFloat(x, 32). Handles dddddp+ddd (binary exponent)
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 149 VMLTYPE exponent = reinterpret_cast<const VMLTYPE&>(src.rhs().functor().m_other); \
152 VMLOP( dst.size(), (const VMLTYPE*)src.lhs().data(), exponent, \
160 VMLOP( dst.innerSize(), (const VMLTYPE*)src_ptr, exponent, \
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_srgb.c 86 * (http://stackoverflow.com/questions/6475373/optimizations-for-pow-with-const-non-integer-exponent)
150 * - use table (based on exponent/highest order mantissa bits) and do
155 * (http://stackoverflow.com/questions/6475373/optimizations-for-pow-with-const-non-integer-exponent)
186 LLVMValueRef pow_approx, coeff, x2, exponent, pow_1, pow_2; local
192 exponent = lp_build_const_vec(gallivm, src_type, exp_f);
202 tmp = lp_build_mul(&f32_bld, tmp, exponent);
211 * exponent in the first place).

Completed in 517 milliseconds

1 2 3 4 5 67 8 91011>>