| /third_party/openssl/util/ |
| D | indent.pro | 1 -bap 2 -bbo 3 -br 4 -brs 5 -c33 6 -cd33 7 -ce 8 -ci4 9 -cli0 10 -cp33 [all …]
|
| /third_party/node/deps/openssl/openssl/util/ |
| D | indent.pro | 1 -bap 2 -bbo 3 -br 4 -brs 5 -c33 6 -cd33 7 -ce 8 -ci4 9 -cli0 10 -cp33 [all …]
|
| /third_party/decimal.js/test/modules/ |
| D | cmp.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('comparedTo', function () { 7 function t(a, b, expected) { function 8 T.assertEqual(expected, new Decimal(a).comparedTo(b)); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t(1, 0, 1); 21 t(1, -0, 1); 22 t(-1, 0, -1); 23 t(-1, -0, -1); [all …]
|
| D | asinh.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('asinh', function () { 5 function t(n, pr, rm, expected) { function 8 T.assertEqual(expected, new Decimal(n).asinh().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('NaN', 40, 4, 'NaN'); 21 t('Infinity', 40, 4, 'Infinity'); 22 t('-Infinity', 40, 4, '-Infinity'); 23 t('0', 40, 4, '0'); [all …]
|
| D | atanh.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('atanh', function () { 5 function t(n, pr, rm, expected) { function 8 T.assertEqual(expected, new Decimal(n).atanh().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('-0.63774941', 1, 4, '-0.8'); 21 t('0.1221481', 9, 0, '0.122761087'); 22 t('-0.17990274590466674', 7, 1, '-0.1818821'); 23 t('-0.6', 5, 6, '-0.69315'); [all …]
|
| D | asin.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('asin', function () { 5 function t(n, pr, rm, expected) { function 8 T.assertEqual(expected, new Decimal(n).asin().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('NaN', 40, 4, 'NaN'); 21 t('1.0000000000000001', 40, 4, 'NaN'); 22 t('2', 40, 4, 'NaN'); 23 t('Infinity', 40, 4, 'NaN'); [all …]
|
| D | cbrt.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('cubeRoot', function () { 5 function t(n, pr, rm, expected) { function 8 T.assertEqual(expected, new Decimal(n).cbrt().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('NaN', 40, 4, 'NaN'); 21 t('0', 40, 4, '0'); 22 t('-0', 40, 4, '-0'); 23 t('Infinity', 40, 4, 'Infinity'); [all …]
|
| D | mod.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('modulo', function () { 5 var t = function (a, b, expected, sd, rm) { function 6 T.assertEqual(expected, new Decimal(a).mod(b).valueOf()); 12 toExpNeg: -7, 14 minE: -9e15, 19 t(1, 0, 'NaN'); 20 t(1, -0, 'NaN'); 21 t(-1, 0, 'NaN'); 22 t(-1, -0, 'NaN'); [all …]
|
| D | times.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('times', function () { 5 var t = function (multiplicand, multiplier, expected) { function 6 T.assertEqual(expected, new Decimal(multiplicand).times(multiplier).valueOf()); 12 toExpNeg: -7, 14 minE: -9e15, 18 t(1, NaN, 'NaN'); 19 t(-1, NaN, 'NaN'); 20 t(1, Infinity, 'Infinity'); 21 t(1, -Infinity, '-Infinity'); [all …]
|
| D | neg.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('negated', function () { 5 function t(expected, n) { function 6 T.assertEqual(expected, new Decimal(n).neg().valueOf()); 12 toExpNeg: -7, 14 minE: -9e15, 18 t('-4', 4); 19 t('-2147483648', 2147483648); 20 t('-0.25', 0.25); 21 t('-0.0625', 0.0625); [all …]
|
| D | toFixed.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('toFixed', function () { 5 function t(expected, n, dp) { function 6 T.assertEqual(expected, new Decimal(n).toFixed(dp)); 10 T.assertException(fn, msg); 16 toExpNeg: -9e15, 18 minE: -9e15, 22 t('100.0', 99.9512986, 1); 23 t('10.0', 9.95036, 1); 24 t('1.0', 0.99, 1); [all …]
|
| D | acos.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('acos', function () { 5 function t(n, pr, rm, expected) { function 8 T.assertEqual(expected, new Decimal(n).acos().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('NaN', 40, 4, 'NaN'); 21 t('Infinity', 40, 4, 'NaN'); 22 t('-Infinity', 40, 4, 'NaN'); 23 t('1.0000000000000001', 40, 4, 'NaN'); [all …]
|
| D | intPow.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('integer pow', function () { 6 function t(expected, n, exp) { function 7 T.assertEqual(expected, new Decimal(n).pow(exp).valueOf()); 11 T.assertException(fn, msg); 17 toExpNeg: -7, 19 minE: -9e15, 25 t('4', 2, 2); 26 t('2147483648', 2, 31); 27 t('0.25', 2, -2); [all …]
|
| D | minus.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('minus', function () { 5 var t = function (minuend, subtrahend, expected) { function 6 T.assertEqual(expected, new Decimal(minuend).minus(subtrahend).valueOf()); 12 toExpNeg: -9e9, 14 minE: -9e15, 18 t(1, 0, '1'); 19 t(1, -0, '1'); 20 t(-1, 0, '-1'); 21 t(-1, -0, '-1'); [all …]
|
| D | toDP.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('toDecimalPlaces', function () { 5 function t(expected, n, dp, rm) { function 6 T.assertEqual(expected, new Decimal(n).toDP(dp, rm).valueOf()); 10 T.assertException(fn, msg); 16 toExpNeg: -9e15, 18 minE: -9e15, 22 T.assert(Decimal.prototype.toDP === Decimal.prototype.toDecimalPlaces); 24 t('0', 0); 25 t('-1', -1); [all …]
|
| D | plus.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('plus', function () { 5 var t = function (addendA, addendB, expected) { function 6 T.assertEqual(expected, new Decimal(addendA).plus(addendB).valueOf()); 12 toExpNeg: -9e9, 14 minE: -9e15, 18 t(1, 0, '1'); 19 t(1, -0, '1'); 20 t(-1, 0, '-1'); 21 t(-1, -0, '-1'); [all …]
|
| D | toPrecision.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('toPrecision', function () { 5 function t(expected, n, sd, rm) { function 6 T.assertEqual(expected, new Decimal(n).toPrecision(sd, rm)); 10 T.assertException(fn, msg); 16 toExpNeg: -7, 18 minE: -9e15, 22 // ---------------------------------------------------------------- v8 start 24 t('1e+27', '1.2345e+27', 1); 25 t('1.2e+27', '1.2345e+27', 2); [all …]
|
| D | toExponential.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('toExponential', function () { 5 function t(expected, n, dp) { function 6 T.assertEqual(expected, new Decimal(n).toExponential(dp)); 10 T.assertException(fn, msg); 16 toExpNeg: -9e15, 18 minE: -9e15, 22 t('1e+0', 1); 23 t('1.1e+1', 11); 24 t('1.12e+2', 112); [all …]
|
| D | atan2.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('atan2', function () { 5 function t(y, x, pr, rm, expected) { function 8 T.assertEqual(expected, Decimal.atan2(y, x).valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 t('NaN', '1', 20, 4, 'NaN'); 21 t('NaN', 'Infinity', 20, 4, 'NaN'); 22 t('0', 'NaN', 20, 4, 'NaN'); 23 t('-Infinity', 'NaN', 20, 4, 'NaN'); [all …]
|
| D | div.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('dividedBy', function () { 8 toExpNeg: -7, 10 minE: -9e15, 14 var t = function (expected, dividend, divisor) { function 16 T.assertEqual(expected, quotient.isZero() && quotient.isNegative()); 19 t(false, 1, Infinity); 20 t(true, 1, -Infinity); 21 t(true, -1, Infinity); 22 t(false, -1, -Infinity); [all …]
|
| D | ln.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('ln', function () { 5 function t(n, expected, sd, rm) { function 8 T.assertEqual(expected, new Decimal(n).ln().valueOf()); 14 toExpNeg: -9e15, 16 minE: -9e15, 20 ('0', '-Infinity', 40, 4); 21 t('0', String(Math.log(0)), 40, 4); 22 t('-0', String('-Infinity'), 40, 4); 23 t('-0', String(Math.log(-0)), 40, 4); [all …]
|
| D | trunc.js | 1 if (typeof T === 'undefined') require('../setup'); 3 T('trunc', function () { 5 function t(expected, n) { function 6 T.assertEqual(expected, new Decimal(n).trunc().valueOf()); 12 toExpNeg: -1e3, 14 minE: -9e15, 18 t('0', 0); 19 t('-0', -0); 20 t('0', '0.000'); 21 t('Infinity', Infinity); [all …]
|
| /third_party/musl/libc-test/src/math/gen/ |
| D | mplibm.c | 3 static int mpf1(struct t *s, float (*f)(float)) in mpf1() 5 s->dy = 0; in mpf1() 6 setupfenv(s->r); in mpf1() 7 s->y = f(s->x); in mpf1() 8 s->e = getexcept(); in mpf1() 12 static int mpf2(struct t *s, float (*f)(float,float)) in mpf2() 14 s->dy = 0; in mpf2() 15 setupfenv(s->r); in mpf2() 16 s->y = f(s->x, s->x2); in mpf2() 17 s->e = getexcept(); in mpf2() [all …]
|
| D | mp.c | 14 return -1; in rmap() 19 [FLT] = -148, 20 [DBL] = -1073, 21 [LDBL] = -16444 36 round x into y considering x is already rounded (t = up or down) 39 x=...|1...0, t=up -> x=nextbelow(x) 40 x=...|1...0, t=down -> x=nextabove(x) 44 // TODO: adjust(y, 0, 2, RN); when prec is 24 (0 vs 0x1p-149f), special case x=0 45 static int adjust_round(mpfr_t y, mpfr_t x, int t, int r) in adjust_round() argument 53 if (yp >= xp || r != MPFR_RNDN || t == 0 || !mpfr_number_p(x) || mpfr_zero_p(x)) { in adjust_round() [all …]
|
| /third_party/ltp/runtest/ |
| D | net.nfs | 5 nfs3_01 nfs01.sh -v 3 -t udp 6 nfs3t_01 nfs01.sh -v 3 -t tcp 7 nfs4_01 nfs01.sh -v 4 -t tcp 8 nfs41_01 nfs01.sh -v 4.1 -t tcp 9 nfs42_01 nfs01.sh -v 4.2 -t tcp 10 nfs3_ipv6_01 nfs01.sh -6 -v 3 -t udp 11 nfs3t_ipv6_01 nfs01.sh -6 -v 3 -t tcp 12 nfs4_ipv6_01 nfs01.sh -6 -v 4 -t tcp 13 nfs41_ipv6_01 nfs01.sh -6 -v 4.1 -t tcp 14 nfs42_ipv6_01 nfs01.sh -6 -v 4.2 -t tcp [all …]
|