Home
last modified time | relevance | path

Searched refs:emin (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Modules/_decimal/tests/
Dranddec.py191 def close_to_one_greater(prec, emax, emin): argument
196 def close_to_one_less(prec, emax, emin): argument
202 def close_to_zero_greater(prec, emax, emin): argument
207 def close_to_zero_less(prec, emax, emin): argument
213 def close_to_emax_less(prec, emax, emin): argument
218 def close_to_emax_greater(prec, emax, emin): argument
224 def close_to_emin_greater(prec, emax, emin): argument
227 str(randrange(rprec)), "E", str(emin)))
229 def close_to_emin_less(prec, emax, emin): argument
232 str(randrange(rprec)), "E", str(emin-1)))
[all …]
Ddeccheck.py793 emin, emax = expts
794 if emin == 'rand':
798 context.Emin, context.Emax = emin, emax
/external/python/cpython3/Modules/_decimal/libmpdec/
Dcontext.c89 ctx->emin=MPD_MIN_EMIN; in mpd_maxcontext()
103 ctx->emin=MPD_MIN_EMIN; in mpd_defaultcontext()
117 ctx->emin=MPD_MIN_EMIN; in mpd_basiccontext()
135 ctx->emin = 1 - ctx->emax; in mpd_ieee_context()
161 return ctx->emin; in mpd_getemin()
216 mpd_qsetemin(mpd_context_t *ctx, mpd_ssize_t emin) in mpd_qsetemin() argument
218 if (emin > 0 || emin < MPD_MIN_EMIN) { in mpd_qsetemin()
221 ctx->emin = emin; in mpd_qsetemin()
Dmpdecimal.c208 return ctx->emin - (ctx->prec - 1); in mpd_etiny()
352 return mpd_adjexp(dec) >= ctx->emin; in mpd_isnormal()
362 return mpd_adjexp(dec) < ctx->emin; in mpd_issubnormal()
728 workctx->emin = ctx->emin; in mpd_workcontext()
1803 if (!mpd_iszerocoeff(dec) && adjexp < ctx->emin) { in _mpd_check_exp()
1809 else if (adjexp < ctx->emin) { in _mpd_check_exp()
1855 if (mpd_adjexp(dec) < ctx->emin && !mpd_iszero(dec) && in mpd_check_underflow()
6103 else if (mpd_adjexp(result) < ctx->emin) { in mpd_qnext_toward()
7304 varcontext.emin = maxcontext.emin = MPD_MIN_EMIN - 100; in _mpd_qreciprocal()
7419 workctx.emin = MPD_MIN_EMIN - 3; in _mpd_base_ndivmod()
Dmpdecimal.h263 mpd_ssize_t emin; /* min negative exp */ member
345 int mpd_qsetemin(mpd_context_t *ctx, mpd_ssize_t emin);
/external/icu/icu4c/source/i18n/
DdecContext.cpp69 context->emin=DEC_MIN_EMIN; /* .. balanced */ in uprv_decContextDefault()
84 context->emin=-95; /* Emin */ in uprv_decContextDefault()
95 context->emin=-383; /* Emin */ in uprv_decContextDefault()
106 context->emin=-6143; /* Emin */ in uprv_decContextDefault()
DdecNumber.cpp730 if ((dn->exponent-1<set->emin-dn->digits) in uprv_decNumberFromString()
1159 dcmul.emin=DEC_MIN_EMIN; /* [thanks to Math restrictions] */ in uprv_decNumberFMA()
1505 aset.emin=-DEC_MAX_MATH; /* .. */ in uprv_decNumberLog10()
2127 aset.emin=-DEC_MAX_MATH; /* .. */ in uprv_decNumberPower()
2954 workset.emin=DEC_MIN_EMIN; in uprv_decNumberSquareRoot()
3060 approxset.emin-=exp/2; /* adjust to match a */ in uprv_decNumberSquareRoot()
3074 approxset.emin-=exp/2; /* adjust to match a */ in uprv_decNumberSquareRoot()
3139 if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); in uprv_decNumberSquareRoot()
3141 if (ae>=set->emin*2) status&=~DEC_Underflow; in uprv_decNumberSquareRoot()
3559 if (ae<set->emin) return 0; /* is subnormal */ in uprv_decNumberIsNormal()
[all …]
DdecContext.h93 int32_t emin; /* minimum negative exponent */ member
/external/arm-optimized-routines/math/test/
Dulp.h22 if (e < RT(emin)) in RT()
23 e = RT(emin) - 1; in RT()
29 return RT(emin) - 1; in RT()
197 mpfr_set_emin (RT(emin)); in T()
/external/fastrpc/src/
Dlistener_android.c269 const char* emin = getenv("ADSP_LISTENER_MEM_CACHE_SIZE"); in listener2() local
270 int cache_size = emin == 0 ? 0 : atoi(emin); in listener2()
277 if(eheap || eflags || emin) { in listener2()
/external/python/cpython3/Modules/_decimal/
D_decimal.c732 Dec_CONTEXT_GET_SSIZE(emin) in Dec_CONTEXT_GET_SSIZE()
872 ctx->emin = x; in context_unsafe_setemin()
1234 PyObject *emin = Py_None; in context_init() local
1247 &prec, &rounding, &emin, &emax, &capitals, &clamp, &status, &traps in context_init()
1258 if (emin != Py_None && context_setemin(self, emin, NULL) < 0) { in context_init()
1332 ctx->prec, mpd_round_string[ctx->round], ctx->emin, ctx->emax, in context_repr()
1438 ctx->prec, mpd_round_string[ctx->round], ctx->emin, ctx->emax, in context_reduce()
4449 maxctx.emin = MPD_MIN_EMIN - 21; in _dec_hash()
/external/python/cpython3/Lib/test/
Dtest_decimal.py1722 emin = C.MIN_EMIN if C else -999999999
1724 c = Context(Emax=emax, Emin=emin)
2862 emin = random.randrange(-100, 0)
2870 prec=prec, Emin=emin, Emax=emax,
2884 self.assertEqual(d.Emin, emin)
5292 emin = random.randrange(-10000, 0)
5297 c = Context(prec=prec, rounding=round, Emin=emin, Emax=emax,
5303 self.assertEqual(c.Emin, emin)
/external/python/cpython2/Lib/test/decimaltestdata/
DddMultiply.decTest450 -- The next rounds to Nmin (b**emin); this is the distinguishing case
/external/python/cpython3/Lib/test/decimaltestdata/
DddMultiply.decTest450 -- The next rounds to Nmin (b**emin); this is the distinguishing case
/external/cldr/common/testData/transforms/
Dky-fonipa-t-ky.txt27 Кемин ɡemin
/external/hyphenation-patterns/de/
Dhyph-de-1996.pat.txt5094 2emin
Dhyph-de-ch-1901.pat.txt5070 2emin
Dhyph-de-1901.pat.txt5135 2emin
/external/hyphenation-patterns/nn/
Dhyph-nn.pat.txt5996 4emin
/external/hyphenation-patterns/nb/
Dhyph-nb.pat.txt5996 4emin
/external/e2fsprogs/po/
Dtr.po8754 "Aygıt görünmüyor; doğru belirttiğinize emin misiniz?\n"