/external/deqp/framework/common/ |
tcuFloat.hpp | 264 const int eMin = 1 - ExponentBias; 278 if (e < eMin) 281 if ((Flags & FLOAT_SUPPORT_DENORM) && (eMin-e-1 <= MantissaBits)) 284 int bitDiff = (OtherMantissaBits-MantissaBits) + (eMin-e); 327 DE_ASSERT(de::inRange(e, eMin, eMax));
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
ldtoa.c | 52 LDBL_MIN_EXP - LDBL_MANT_DIG, /* emin */
|
gdtoa.c | 291 else if (i >= -4 - Emin || i < Emin) 513 if (be - i++ < fpi->emin && mode != 3 && mode != 5) { 515 i = be - fpi->emin + 1; 583 if (bbits == 1 && be0 > fpi->emin + 1) {
|
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
ldtoa.c | 61 LDBL_MIN_EXP - LDBL_MANT_DIG, /* emin */
|
/external/opencv/cv/src/ |
cvsnakes.cpp | 197 float Emin = _CV_SNAKE_BIG; 365 Emin = _CV_SNAKE_BIG; 371 if( E[(j + centery) * win.width + k + centerx] < Emin ) 373 Emin = E[(j + centery) * win.width + k + centerx];
|
/external/python/cpython3/Lib/test/ |
test_decimal.py | 478 self.context.Emin = exp [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin
118 -- next is rounded to Emin
|
minus.decTest | 126 -- next is rounded to Emin
139 -- next is rounded to Emin
|
plus.decTest | 137 -- next is rounded to Emin
150 -- next is rounded to Emin
|
/external/golang-protobuf/proto/ |
clone.go | 87 if emIn, ok := extendable(in.Addr().Interface()); ok { 89 mIn, muIn := emIn.extensionsRead()
|
/external/python/cpython2/Lib/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
minus.decTest | 126 -- next is rounded to Emin 139 -- next is rounded to Emin
|
plus.decTest | 137 -- next is rounded to Emin 150 -- next is rounded to Emin
|
/external/python/cpython3/Lib/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
minus.decTest | 126 -- next is rounded to Emin 139 -- next is rounded to Emin
|
plus.decTest | 137 -- next is rounded to Emin 150 -- next is rounded to Emin
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/ |
abs.decTest | 105 -- next is rounded to Emin 118 -- next is rounded to Emin
|
/external/icu/icu4c/source/i18n/ |
decContext.cpp | 69 context->emin=DEC_MIN_EMIN; /* .. balanced */ 84 context->emin=-95; /* Emin */ 95 context->emin=-383; /* Emin */ 106 context->emin=-6143; /* Emin */
|
decContext.h | 48 /* emin -- must be in the range 0 through -999999999 */ 93 int32_t emin; /* minimum negative exponent */ member in struct:__anon21431
|
/prebuilts/go/darwin-x86/src/math/big/ |
float.go | 839 emin = 1 - bias // -126 smallest unbiased exponent (normal) 851 if e < emin { 853 p = mbits + 1 - emin + int(e) 907 if e < emin { 912 p = mbits + 1 - emin + int(e) 915 // normal number: emin <= e <= emax 959 emin = 1 - bias // -1022 smallest unbiased exponent (normal) 971 if e < emin { 973 p = mbits + 1 - emin + int(e) 1027 if e < emin { [all...] |
/prebuilts/go/linux-x86/src/math/big/ |
float.go | 839 emin = 1 - bias // -126 smallest unbiased exponent (normal) 851 if e < emin { 853 p = mbits + 1 - emin + int(e) 907 if e < emin { 912 p = mbits + 1 - emin + int(e) 915 // normal number: emin <= e <= emax 959 emin = 1 - bias // -1022 smallest unbiased exponent (normal) 971 if e < emin { 973 p = mbits + 1 - emin + int(e) 1027 if e < emin { [all...] |
/external/valgrind/exp-sgcheck/ |
pc_common.c | 287 static void emiN ( const HChar* format, ... ) /* With NO FORMAT CHECK */ 329 emiN( " <auxwhat>Expected: %pS</auxwhat>\n", 331 emiN( " <auxwhat>Actual: %pS</auxwhat>\n", 436 emiN( " %pS\n", 439 emiN( " %pS\n", 442 emiN( " <auxwhat>Address 0x%llx is %llu bytes "
|