Lines Matching refs:D1
18 var D1 = Decimal.clone({ precision: 1 });
33 var x1 = new D1(5);
55 var y1 = new D1(3);
95 t(D1.precision === 1);
104 t(new Decimal(1).constructor !== new D1(1).constructor);
125 D1 = Decimal.clone({ defaults: true });
127 t(D1.precision === 20);
128 t(D1.rounding === 4);
129 t(D1.toExpNeg === -7);
130 t(D1.toExpPos === 21);
131 t(D1.defaults === undefined);