/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_strtod.py | 129 digits, exponent = n, e 131 s = '{}e{}'.format(digits, exponent) 134 s = '{}e{}'.format(digits * 10**40, exponent - 40) 140 digits, exponent = n, e 142 s = '{}e{}'.format(digits, exponent) 145 s = '{}e{}'.format(digits * 10**40, exponent - 40) 148 exponent -= 1 168 exponent = 0 172 exponent = e 173 s = '{}e{}'.format(digits, exponent) [all …]
|
D | formatfloat_testcases.txt | 345 -- least one digit after the point, or an exponent. 360 -- values >= 1e11 get an exponent
|
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/ |
D | floatunsidf.c | 61 const int exponent = (aWidth - 1) - __builtin_clz(a); in ARM_EABI_FNALIAS() local 65 const int shift = significandBits - exponent; in ARM_EABI_FNALIAS() 69 result += (rep_t)(exponent + exponentBias) << significandBits; in ARM_EABI_FNALIAS()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/ |
D | ddCanonical.decTest | 81 -- NaN: exponent continuation bits [excluding sNaN selector] 100 -- sNaN: exponent continuation bits [excluding sNaN selector] 110 -- Inf: exponent continuation bits 156 -- NaN: exponent continuation bits [excluding sNaN selector] 162 -- sNaN: exponent continuation bits [excluding sNaN selector] 165 -- Inf: exponent continuation bits 266 -- NaN: exponent continuation bits [excluding sNaN selector] 272 -- sNaN: exponent continuation bits [excluding sNaN selector] 275 -- Inf: exponent continuation bits 313 -- NaN: exponent continuation bits [excluding sNaN selector] [all …]
|
D | dqCanonical.decTest | 83 -- NaN: exponent continuation bits [excluding sNaN selector] 108 -- sNaN: exponent continuation bits [excluding sNaN selector] 121 -- Inf: exponent continuation bits 187 -- NaN: exponent continuation bits [excluding sNaN selector] 193 -- sNaN: exponent continuation bits [excluding sNaN selector] 196 -- Inf: exponent continuation bits 289 -- NaN: exponent continuation bits [excluding sNaN selector] 295 -- sNaN: exponent continuation bits [excluding sNaN selector] 298 -- Inf: exponent continuation bits 332 -- NaN: exponent continuation bits [excluding sNaN selector] [all …]
|
D | dsEncode.decTest | 28 -- 6 bits exponent continuation 31 -- Total exponent length 8 bits 34 -- Elimit = 191 (maximum encoded exponent) 35 -- Emax = 96 (largest exponent value) 36 -- Emin = -95 (smallest exponent value) 37 -- bias = 101 (subtracted from encoded exponent) = -Etiny
|
D | dqEncode.decTest | 28 -- 12 bits exponent continuation 31 -- Total exponent length 14 bits 34 -- Elimit = 12287 (maximum encoded exponent) 35 -- Emax = 6144 (largest exponent value) 36 -- Emin = -6143 (smallest exponent value) 37 -- bias = 6176 (subtracted from encoded exponent) = -Etiny 218 -- exponent lengths
|
D | ddEncode.decTest | 28 -- 8 bits exponent continuation 31 -- Total exponent length 10 bits 34 -- Elimit = 767 (maximum encoded exponent) 35 -- Emax = 384 (largest exponent value) 36 -- Emin = -383 (smallest exponent value) 37 -- bias = 398 (subtracted from encoded exponent) = -Etiny
|
D | dqLogB.decTest | 2 -- dqLogB.decTest -- integral 754r adjusted exponent, for decQuads --
|
D | ddLogB.decTest | 2 -- ddLogB.decTest -- integral 754r adjusted exponent, for decDoubles --
|
D | logb.decTest | 2 -- logb.decTest -- return integral adjusted exponent as per 754r --
|
D | dqReduce.decTest | 96 -- some insignificant trailing zeros with positive exponent
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
D | res_debug.c | 574 int mantissa, exponent; in precsize_ntoa() local 577 exponent = (int)((prec >> 0) & 0x0f) % 10; in precsize_ntoa() 579 val = mantissa * poweroften[exponent]; in precsize_ntoa() 594 int exponent; in precsize_aton() local 613 for (exponent = 0; exponent < 9; exponent++) in precsize_aton() 614 if (cmval < poweroften[exponent+1]) in precsize_aton() 617 mantissa = cmval / poweroften[exponent]; in precsize_aton() 621 retval = (u_int8_t)((mantissa << 4) | exponent); in precsize_aton()
|
/device/google/contexthub/util/common/ |
D | JSONObject.cpp | 322 int32_t exponent; in Parse() local 323 if (parseInt32(&data[firstExpDigitOffset], numExpDigits, &exponent) != 0) { in Parse() 328 exponent = -exponent; in Parse() 332 x += (float)fraction * powf(10.0f, exponent - (int32_t)numFracDigits); in Parse()
|
/device/google/contexthub/util/nanoapp_sign/ |
D | nanoapp_sign.c | 119 uint32_t exponent[RSA_LIMBS]; member 384 rsaResult = rsaPrivOp(&rsa->state, rsa->num, rsa->exponent, rsa->modulus); in handleSign() 503 if (!readFile(rsa.exponent, sizeof(rsa.exponent), keyPvtFile)) in main() 507 printHashRev(stderr, "RSA exponent", rsa.exponent, RSA_LIMBS); in main()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | numbers.py | 137 def __pow__(self, exponent): argument 310 def __pow__(self, exponent, modulus=None): argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | numbers.py | 137 def __pow__(self, exponent): argument 310 def __pow__(self, exponent, modulus=None): argument
|
/device/google/contexthub/firmware/lib/builtins/ |
D | fp_extend_impl.inc | 74 // exponent into the proper position and rebiasing the exponent. 92 // the correct adjusted exponent in the destination type.
|
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/ |
D | MyWebSocketHandler.cpp | 552 BIGNUM exponent; in CreateDTLSCertificateAndKey() local 553 BN_init(&exponent); in CreateDTLSCertificateAndKey() 554 BN_set_word(&exponent, RSA_F4); in CreateDTLSCertificateAndKey() 557 rsa.get() /* rsa */, 2048, &exponent, nullptr /* callback */); in CreateDTLSCertificateAndKey()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | floatobject.c | 463 int exponent; in float_richcompare() local 508 (void) frexp(i, &exponent); in float_richcompare() 512 if (exponent < 0 || (size_t)exponent < nbits) { in float_richcompare() 517 if ((size_t)exponent > nbits) { in float_richcompare() 1705 int exponent; in float_as_integer_ratio() local 1736 float_part = frexp(self, &exponent); /* self == float_part * 2**exponent exactly */ in float_as_integer_ratio() 1741 exponent--; in float_as_integer_ratio() 1752 py_exponent = PyLong_FromLong(labs((long)exponent)); in float_as_integer_ratio() 1757 if (exponent > 0) { in float_as_integer_ratio()
|
D | complexobject.c | 657 Py_complex exponent; in complex_pow() local 668 exponent = b; in complex_pow() 669 int_exponent = (long)exponent.real; in complex_pow() 670 if (exponent.imag == 0. && exponent.real == int_exponent) in complex_pow() 673 p = c_pow(a,exponent); in complex_pow()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | floatobject.c | 462 int exponent; in float_richcompare() local 507 (void) frexp(i, &exponent); in float_richcompare() 511 if (exponent < 0 || (size_t)exponent < nbits) { in float_richcompare() 516 if ((size_t)exponent > nbits) { in float_richcompare() 1690 int exponent; in float_as_integer_ratio() local 1721 float_part = frexp(self, &exponent); /* self == float_part * 2**exponent exactly */ in float_as_integer_ratio() 1726 exponent--; in float_as_integer_ratio() 1737 py_exponent = PyLong_FromLong(labs((long)exponent)); in float_as_integer_ratio() 1742 if (exponent > 0) { in float_as_integer_ratio()
|
D | complexobject.c | 653 Py_complex exponent; in complex_pow() local 664 exponent = b; in complex_pow() 665 int_exponent = (long)exponent.real; in complex_pow() 666 if (exponent.imag == 0. && exponent.real == int_exponent) in complex_pow() 669 p = c_pow(a,exponent); in complex_pow()
|
/device/google/crosshatch/audio/ |
D | Test1_Crosshatch_5_10_2018_onsite_final_remove_actisonic.tuning | 380 "enhance_and_protect_left.DRC.Limiter 1.Gain.gain leaf.exponent": 0, 414 "enhance_and_protect_left.DRC.Limiter 2.Gain.gain leaf.exponent": 0, 448 "enhance_and_protect_left.DRC.Limiter 3.Gain.gain leaf.exponent": 0, 482 "enhance_and_protect_left.DRC.Limiter 4.Gain.gain leaf.exponent": 0, 516 "enhance_and_protect_left.DRC.Limiter 5.Gain.gain leaf.exponent": 0, 611 "enhance_and_protect_left.Equalizer.Gain.gain leaf.exponent": 0, 634 "enhance_and_protect_left.Input Enhance.Gain 1.gain leaf.exponent": 0, 637 "enhance_and_protect_left.Input Enhance.Gain 2.gain leaf.exponent": 0, 640 "enhance_and_protect_left.Input Enhance.Gain 3.gain leaf.exponent": 0, 643 "enhance_and_protect_left.Input Enhance.Gain Comp.gain leaf.exponent": -1, [all …]
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/ |
D | gles1.attrib | 331 dir exponent out 332 len exponent (16 * sizeof(GLfixed))
|