/third_party/python/Modules/_decimal/tests/ |
D | randdec.py | 191 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 …]
|
D | deccheck.py | 941 emin, emax = expts 942 if emin == 'rand': 946 context.Emin, context.Emax = emin, emax
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | context.c | 91 ctx->emin=MPD_MIN_EMIN; in mpd_maxcontext() 105 ctx->emin=MPD_MIN_EMIN; in mpd_defaultcontext() 119 ctx->emin=MPD_MIN_EMIN; in mpd_basiccontext() 137 ctx->emin = 1 - ctx->emax; in mpd_ieee_context() 163 return ctx->emin; in mpd_getemin() 218 mpd_qsetemin(mpd_context_t *ctx, mpd_ssize_t emin) in mpd_qsetemin() argument 220 if (emin > 0 || emin < MPD_MIN_EMIN) { in mpd_qsetemin() 223 ctx->emin = emin; in mpd_qsetemin()
|
/third_party/musl/src/internal/ |
D | floatscan.c | 63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument 74 int emax = -emin-bits+3; in decfloat() 145 if (lrp > -emin/2) { in decfloat() 149 if (lrp < emin-2*LDBL_MANT_DIG) { in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument 388 if (e2 > -emin) { in hexfloat() 392 if (e2 < emin-2*LDBL_MANT_DIG) { in hexfloat() [all …]
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
D | floatscan.c | 63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument 74 int emax = -emin-bits+3; in decfloat() 145 if (lrp > -emin/2) { in decfloat() 149 if (lrp < emin-2*LDBL_MANT_DIG) { in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument 388 if (e2 > -emin) { in hexfloat() 392 if (e2 < emin-2*LDBL_MANT_DIG) { in hexfloat() [all …]
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
D | floatscan.c | 63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument 74 int emax = -emin-bits+3; in decfloat() 145 if (lrp > -emin/2) { in decfloat() 149 if (lrp < emin-2*LDBL_MANT_DIG) { in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument 388 if (e2 > -emin) { in hexfloat() 392 if (e2 < emin-2*LDBL_MANT_DIG) { in hexfloat() [all …]
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
D | floatscan.c | 63 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument 74 int emax = -emin-bits+3; in decfloat() 145 if (lrp > -emin/2) { in decfloat() 149 if (lrp < emin-2*LDBL_MANT_DIG) { in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 314 static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument 388 if (e2 > -emin) { in hexfloat() 392 if (e2 < emin-2*LDBL_MANT_DIG) { in hexfloat() [all …]
|
/third_party/quickjs/ |
D | qjscalc.js | 1580 var emin, r, i; 1590 emin = get_emin(a); 1591 r = Series.zero(n, emin); 1592 n = Math.min(a.length - emin, n); 1594 r[i] = a[i + emin]; 1605 var tmp, d, emin, n, r, i, j, v2_emin, c1, c2; 1611 d = v1.emin + v1.length; 1624 v2_emin = v2.emin; 1626 v2_emin = v2.emin; 1629 emin = Math.min(v1.emin, v2_emin); [all …]
|
/third_party/ffmpeg/libavutil/ |
D | avsscanf.c | 245 static double decfloat(FFFILE *f, int c, int bits, int emin, int sign, int pok) in decfloat() argument 256 int emax = -emin-bits+3; in decfloat() 327 if (lrp > -emin/2) { in decfloat() 331 if (lrp < emin-2*DBL_MANT_DIG) { in decfloat() 449 if (bits > DBL_MANT_DIG+e2-emin) { in decfloat() 450 bits = DBL_MANT_DIG+e2-emin; in decfloat() 485 if (denormal && bits==DBL_MANT_DIG+e2-emin) in decfloat() 497 static double hexfloat(FFFILE *f, int bits, int emin, int sign, int pok) in hexfloat() argument 572 if (e2 > -emin) { in hexfloat() 576 if (e2 < emin-2*DBL_MANT_DIG) { in hexfloat() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | decContext.cpp | 69 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()
|
D | decNumber.cpp | 730 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 …]
|
D | decContext.h | 93 int32_t emin; /* minimum negative exponent */ member
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | decContext.cpp | 69 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()
|
D | decNumber.cpp | 730 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 …]
|
D | decContext.h | 93 int32_t emin; /* minimum negative exponent */ member
|
/third_party/icu/icu4c/source/i18n/ |
D | decContext.cpp | 69 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()
|
D | decNumber.cpp | 730 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 …]
|
D | decContext.h | 93 int32_t emin; /* minimum negative exponent */ member
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | decContext.cpp | 69 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()
|
D | decNumber.cpp | 730 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 …]
|
D | decContext.h | 93 int32_t emin; /* minimum negative exponent */ member
|
/third_party/optimized-routines/math/test/ |
D | ulp.h | 22 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()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_waveform.c | 102 int *emin[4][4]; member 492 int *emin = s->emin[plane][component]; in envelope_peak16() local 498 for (y = start; y < end && y < emin[x - offset]; y++) { in envelope_peak16() 501 emin[x - offset] = y; in envelope_peak16() 518 dst = (uint16_t *)out->data[component] + emin[x - offset] * dst_linesize + x; in envelope_peak16() 526 for (x = start; x < end && x < emin[y - offset]; x++) { in envelope_peak16() 528 emin[y - offset] = x; in envelope_peak16() 544 dst = (uint16_t *)out->data[component] + y * dst_linesize + emin[y - offset]; in envelope_peak16() 561 int *emin = s->emin[plane][component]; in envelope_peak() local 567 for (y = start; y < end && y < emin[x - offset]; y++) { in envelope_peak() [all …]
|
/third_party/nghttp2/doc/_themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/ |
D | sphinx.po | 119 "yazıldığından ve yeterli kategori seçtiğinizden emin olun."
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 741 Dec_CONTEXT_GET_SSIZE(emin) in Dec_CONTEXT_GET_SSIZE() 881 ctx->emin = x; in context_unsafe_setemin() 1249 PyObject *emin = Py_None; in context_init() local 1262 &prec, &rounding, &emin, &emax, &capitals, &clamp, &status, &traps in context_init() 1273 if (emin != Py_None && context_setemin(self, emin, NULL) < 0) { in context_init() 1347 ctx->prec, mpd_round_string[ctx->round], ctx->emin, ctx->emax, in context_repr() 1453 ctx->prec, mpd_round_string[ctx->round], ctx->emin, ctx->emax, in context_reduce() 4598 maxctx.emin = MPD_MIN_EMIN - 21; in _dec_hash()
|