/third_party/quickjs/ |
D | libbf.c | 188 r->expn = BF_EXP_ZERO; in bf_init() 213 r->expn = BF_EXP_ZERO; in bf_set_ui() 227 r->expn = LIMB_BITS - shift; in bf_set_ui() 240 r->expn = 2 * LIMB_BITS - shift; in bf_set_ui() 266 r->expn = BF_EXP_NAN; in bf_set_nan() 273 r->expn = BF_EXP_ZERO; in bf_set_zero() 280 r->expn = BF_EXP_INF; in bf_set_inf() 294 r->expn = a->expn; in bf_set() 473 r->expn = e_max; in bf_set_overflow() 499 prec = r->expn + prec1; in __bf_round() [all …]
|
D | libbf.h | 94 slimb_t expn; member 103 slimb_t expn; member 236 return (a->expn < BF_EXP_INF); in bf_is_finite() 241 return (a->expn == BF_EXP_NAN); in bf_is_nan() 246 return (a->expn == BF_EXP_ZERO); in bf_is_zero() 326 slimb_t expn, limb_t prec, bf_flags_t flags); 434 return (a->expn < BF_EXP_INF); in bfdec_is_finite() 439 return (a->expn == BF_EXP_NAN); in bfdec_is_nan() 444 return (a->expn == BF_EXP_ZERO); in bfdec_is_zero()
|
D | quickjs.c | 9956 ret = p->num.expn != BF_EXP_ZERO && p->num.expn != BF_EXP_NAN; in JS_ToBoolFree() 9964 ret = p->num.expn != BF_EXP_ZERO && p->num.expn != BF_EXP_NAN; in JS_ToBoolFree() 11182 if (a->expn == BF_EXP_ZERO) in js_bigint_to_string1() 11213 if (a->expn == BF_EXP_ZERO) in js_ftoa() 11269 if (a->expn == BF_EXP_ZERO) in js_bigdecimal_to_string1() 12357 } else if (a->expn == BF_EXP_ZERO && a->sign) { in JS_CompactBigInt1() 14705 a->expn == BF_EXP_ZERO && b->expn == BF_EXP_ZERO) { in js_strict_eq2() 34181 if (a->expn == BF_EXP_ZERO) in JS_WriteBigNum() 34183 else if (a->expn == BF_EXP_INF) in JS_WriteBigNum() 34185 else if (a->expn == BF_EXP_NAN) in JS_WriteBigNum() [all …]
|
/third_party/boost/libs/math/test/ |
D | test_expint_hooks.hpp | 13 double expn(int, double); 20 { return expn(n, a); } in expint() 24 return expn(n, (double)a); in expint()
|
/third_party/mesa3d/src/freedreno/rnn/ |
D | rnndec.c | 104 int32_t expn = (val >> 10) & 0x1f; in float16i() local 106 if (expn == 0) { in float16i() 111 expn = -shift; in float16i() 116 } else if (expn == 0x1f) { in float16i() 121 return sign | ((expn + 127 - 15) << 23) | (frac << 13); in float16i()
|
/third_party/ffmpeg/libavcodec/ |
D | j2kenc.c | 378 bytestream_put_byte(&s->buf, qntsty->expn[i] << 3); in put_qcd() 381 bytestream_put_be16(&s->buf, (qntsty->expn[i] << 11) | qntsty->mant[i]); in put_qcd() 561 int expn, mant = 0; in init_quantization() local 568 expn = s->cbps[compno] - log + 13; in init_quantization() 570 expn = ((bandno&2)>>1) + (reslevelno>0) + s->cbps[compno]; in init_quantization() 572 qntsty->expn[gbandno] = expn; in init_quantization() 781 int precno, uint8_t *expn, int numgbits, int packetno, in encode_packet() argument 809 prec->zerobits[pos].val = expn[bandno] + numgbits - 1 - cblk->nonzerobits; in encode_packet() 963 …if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 :… in encode_packets() 978 …if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 :… in encode_packets() [all …]
|
D | jpeg2000dec.c | 681 q->expn[i] = bytestream2_get_byteu(&s->g) >> 3; in get_qcx() 686 q->expn[0] = x >> 11; in get_qcx() 689 int curexpn = FFMAX(0, q->expn[0] - (i - 1) / 3); in get_qcx() 690 q->expn[i] = curexpn; in get_qcx() 700 q->expn[i] = x >> 11; in get_qcx() 1105 int layno, uint8_t *expn, int numgbits) in jpeg2000_decode_packet() argument 1151 int v = expn[bandno] + numgbits - 1 - in jpeg2000_decode_packet() 1328 … qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), in jpeg2000_decode_packets_po_iteration() 1354 … qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), in jpeg2000_decode_packets_po_iteration() 1420 … qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), in jpeg2000_decode_packets_po_iteration() [all …]
|
D | jpeg2000.h | 152 uint8_t expn[JPEG2000_MAX_DECLEVELS * 3]; // quantization exponent member
|
D | jpeg2000.c | 226 band->f_stepsize = ff_exp2fi(gain - qntsty->expn[gbandno]); in init_band_stepsize()
|
/third_party/curl/docs/examples/ |
D | .gitignore | 84 smtp-expn
|
D | Makefile.inc | 109 smtp-expn \
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | quant_enc.c | 350 const double expn = (alpha > amax) ? exp_min in QualityToJPEGCompression() local 353 const double v = pow(c, expn); in QualityToJPEGCompression() 414 const double expn = 1. - amp * enc->dqm_[i].alpha_; in VP8SetSegmentParams() local 415 const double c = pow(c_base, expn); in VP8SetSegmentParams() 417 assert(expn > 0.); in VP8SetSegmentParams()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | quant_enc.c | 350 const double expn = (alpha > amax) ? exp_min in QualityToJPEGCompression() local 353 const double v = pow(c, expn); in QualityToJPEGCompression() 414 const double expn = 1. - amp * enc->dqm_[i].alpha_; in VP8SetSegmentParams() local 415 const double c = pow(c_base, expn); in VP8SetSegmentParams() 417 assert(expn > 0.); in VP8SetSegmentParams()
|
/third_party/boost/libs/math/reporting/accuracy/ |
D | Jamfile.v2 | 53 exp.c exp10.c exp2.c expn.c expx2.c fabs.c fac.c fdtr.c
|
/third_party/ffmpeg/libavcodec/x86/ |
D | ac3dsp.asm | 45 cglobal ac3_exponent_min, 3, 4, 2, exp, reuse_blks, expn, offset
|
/third_party/boost/libs/math/reporting/performance/ |
D | Jamfile.v2 | 59 exp.c exp10.c exp2.c expn.c expx2.c fabs.c fac.c fdtr.c
|
/third_party/python/Lib/ |
D | smtplib.py | 592 def expn(self, address): member in SMTP
|
/third_party/python/Lib/test/ |
D | test_smtplib.py | 1113 self.assertEqual(smtp.expn(listname), expected_known) 1117 self.assertEqual(smtp.expn(u), expected_unknown)
|