/external/qemu/fpu/ |
D | softfloat-specialize.h | 134 uint16_t mantissa = a.high>>54; in commonNaNToFloat16() local 140 if (mantissa) { in commonNaNToFloat16() 142 | (0x1F << 10) | mantissa)); in commonNaNToFloat16() 225 uint32_t mantissa = a.high>>41; in commonNaNToFloat32() local 231 if ( mantissa ) in commonNaNToFloat32() 471 uint64_t mantissa = a.high>>12; in commonNaNToFloat64() local 477 if ( mantissa ) in commonNaNToFloat64()
|
/external/dnsmasq/contrib/dns-loc/ |
D | dnsmasq2-loc-rfc1876.patch | 161 + int mantissa, exponent; 163 + mantissa = (int)((prec >> 4) & 0x0f) % 10; 166 + val = mantissa * poweroften[exponent]; 180 + register int mantissa; 202 + mantissa = cmval / poweroften[exponent]; 203 + if (mantissa > 9) 204 + mantissa = 9; 206 + retval = (mantissa << 4) | exponent;
|
/external/bluetooth/glib/glib/ |
D | gtypes.h | 361 guint mantissa : 23; member 383 guint mantissa : 23; member
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 920 uint64_t mantissa = (T.I & (~0ULL >> 12)) | 1ULL << 52; in RoundDoubleToAPInt() local 924 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : in RoundDoubleToAPInt() 925 APInt(width, mantissa >> (52 - exp)); in RoundDoubleToAPInt() 933 APInt Tmp(width, mantissa); in RoundDoubleToAPInt() 982 uint64_t mantissa; in roundToDouble() local 985 mantissa = Tmp.pVal[0]; in roundToDouble() 987 mantissa >>= n - 52; // shift down, we want the top 52 bits. in roundToDouble() 992 mantissa = hibits | lobits; in roundToDouble() 1001 T.I = sign | (exp << 52) | mantissa; in roundToDouble()
|
/external/srec/srec/EventLog/src/ |
D | riff.c | 182 int sign, exponent, mantissa, sample; in ulaw2linear() local 187 mantissa = ulawbyte & 0x0F; in ulaw2linear() 188 sample = exp_lut[exponent] + (mantissa << (exponent + 3)); in ulaw2linear()
|
/external/webrtc/src/modules/audio_processing/aec/main/source/ |
D | aec_core_sse2.c | 266 const __m128 mantissa = _mm_and_ps(a, *((__m128 *)mantissa_mask)); in mm_pow_ps() local 268 mantissa, *((__m128 *)zero_biased_exponent_is_one)); in mm_pow_ps()
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
D | 2008-08-14-ShadowIV.ll | 25 ; Unable to eliminate cast because the mantissa bits for double are not enough
|
/external/quake/quake/src/WinQuake/ |
D | gl_rmain.cpp | 1262 GLfixed mantissa[16]; in R_SetupGL() 1264 glQueryMatrixxOES( mantissa, exponent ); in R_SetupGL() 1266 r_world_matrix[i] = scalbnf(mantissa[i], exponent[i]-16); in R_SetupGL()
|
/external/astl/include/ |
D | limits | 81 // floating-point types, the number of radix digits in the mantissa.
|
/external/libvpx/vp8/common/x86/ |
D | boolcoder.cxx | 185 return ldexp( (double)mantissa( i), - (int) exponent( i)); in operator ()()
|
/external/v8/src/arm/ |
D | code-stubs-arm.cc | 312 Register mantissa = result2_; in Generate() local 336 __ mov(mantissa, Operand(0, RelocInfo::NONE)); in Generate() 342 __ CountLeadingZeros(zeros_, source_, mantissa); in Generate() 348 __ rsb(mantissa, zeros_, Operand(31 + HeapNumber::kExponentBias - fudge)); in Generate() 349 __ add(mantissa, mantissa, Operand(fudge)); in Generate() 352 Operand(mantissa, LSL, HeapNumber::kExponentShift)); in Generate() 358 __ mov(mantissa, Operand(source_, LSL, HeapNumber::kMantissaBitsInTopWord)); in Generate()
|
/external/bluetooth/glib/ |
D | ChangeLog.pre-2-0 | 6237 mantissa and exponent of IEEE floats and doubles (required by the new
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 96853 The original number cannot be represented by mantissa of float
|