Searched refs:Double (Results 1 - 25 of 182) sorted by relevance

12345678

/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Ddouble.h42 class Double { class in namespace:WTF::double_conversion
51 Double() : d64_(0) {} function in class:WTF::double_conversion::Double
52 explicit Double(double d) : d64_(double_to_uint64(d)) {} function in class:WTF::double_conversion::Double
53 explicit Double(uint64_t d64) : d64_(d64) {} function in class:WTF::double_conversion::Double
54 explicit Double(DiyFp diy_fp) function in class:WTF::double_conversion::Double
57 // The value encoded by this Double must be greater or equal to +0.0.
65 // The value encoded by this Double must be strictly greater than 0.
89 if (d64_ == kInfinity) return Double(kInfinity).value();
95 return Double(d64_ - 1).value();
97 return Double(d64
[all...]
H A Dbignum-dtoa.cc43 while ((significand & Double::kHiddenBit) == 0) {
94 ASSERT(!Double(v).IsSpecial());
95 uint64_t significand = Double(v).Significand();
97 int exponent = Double(v).Exponent();
412 numerator->AssignUInt64(Double(v).Significand());
413 numerator->ShiftLeft(Double(v).Exponent());
425 delta_plus->ShiftLeft(Double(v).Exponent());
428 delta_minus->ShiftLeft(Double(v).Exponent());
435 uint64_t v_bits = Double(v).AsUint64();
436 if ((v_bits & Double
[all...]
H A Dstrtod.cc318 Double::SignificandSizeForOrderOfMagnitude(order_of_magnitude);
352 *result = Double(rounded_input).value();
374 if (guess == Double::Infinity()) {
378 DiyFp upper_boundary = Double(guess).UpperBoundary();
406 return Double(guess).NextDouble();
407 } else if ((Double(guess).Significand() & 1) == 0) {
411 return Double(guess).NextDouble();
431 return Double::Infinity();
H A Ddouble-conversion.cc61 Double double_inspect(value);
167 if (Double(value).IsSpecial()) {
206 if (Double(value).IsSpecial()) {
240 if (Double(value).IsSpecial()) {
288 if (Double(value).IsSpecial()) {
364 ASSERT(!Double(v).IsSpecial());
367 if (Double(v).Sign() < 0) {
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/c/
H A DWKNumber.cpp52 return toAPI(API::Double::APIType);
57 RefPtr<API::Double> doubleObject = API::Double::create(value);
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DDoubleBinding.java14 * A concrete <code>TupleBinding</code> for a <code>Double</code> primitive
40 return new Double(input.readDouble());
H A DSortedDoubleBinding.java14 * A concrete <code>TupleBinding</code> for a <code>Double</code> primitive
46 return new Double(input.readSortedDouble());
H A DTupleBinding.java55 addPrimitive(Double.class, Double.TYPE, new DoubleBinding());
115 * <li><code>Double</code></li>
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DAPINumber.h71 typedef Number<double, API::Object::Type::Double> Double; typedef in namespace:API
H A DWebPreferencesStore.h72 Double, member in class:WebKit::WebPreferencesStore::Value::Type
82 explicit Value(double value) : m_type(Type::Double), m_double(value) { }
99 case Type::Double:
125 case Type::Double:
160 ASSERT(m_type == Type::Double);
H A DWebPreferencesDefinitions.h215 macro(PDFScaleFactor, pdfScaleFactor, Double, double, 0) \
216 macro(IncrementalRenderingSuppressionTimeout, incrementalRenderingSuppressionTimeout, Double, double, 5) \
217 macro(MinimumFontSize, minimumFontSize, Double, double, 0) \
218 macro(MinimumLogicalFontSize, minimumLogicalFontSize, Double, double, 9) \
219 macro(MinimumZoomFontSize, minimumZoomFontSize, Double, double, DEFAULT_MINIMUM_FONT_ZOOM_SIZE) \
220 macro(DefaultFontSize, defaultFontSize, Double, double, 16) \
221 macro(DefaultFixedFontSize, defaultFixedFontSize, Double, double, 13) \
222 macro(LayoutInterval, layoutInterval, Double, double, -1) \
223 macro(MaxParseDuration, maxParseDuration, Double, double, -1) \
224 macro(PasswordEchoDuration, passwordEchoDuration, Double, doubl
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Plugins/
H A DNPVariantData.h47 Double, enumerator in enum:WebKit::NPVariantData::Type
79 ASSERT(type() == NPVariantData::Double);
H A DNPVariantData.cpp85 npVariantData.m_type = NPVariantData::Double;
135 case NPVariantData::Double:
175 case NPVariantData::Double:
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/uwin/
H A Dmathimpl.h92 struct Double {double a, b;}; struct
94 struct Double __log__D __P((double));
H A Dgamma.c90 static struct Double large_gam __P((double));
91 static struct Double ratfun_gam __P((double, double));
149 struct Double u;
178 static struct Double
183 struct Double t, u, v;
212 struct Double yy, r;
246 struct Double r, xx;
270 static struct Double
275 struct Double r, t;
302 struct Double l
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleOrderingTest.java349 0, Double.MIN_VALUE, 2 * Double.MIN_VALUE,
356 Float.MAX_VALUE, Double.MAX_VALUE,
357 Double.POSITIVE_INFINITY,
358 Double.NaN,
417 Double.NEGATIVE_INFINITY,
418 (- Double.MAX_VALUE),
434 2 * (- Double.MIN_VALUE),
435 (- Double.MIN_VALUE),
437 Double
[all...]
H A DTupleFormatTest.java644 if (Double.isNaN(val)) {
701 if (Double.isNaN(val)) {
702 assertTrue(Double.isNaN(in.readDouble()));
717 doubleTest(Double.NaN);
718 doubleTest(Double.NEGATIVE_INFINITY);
719 doubleTest(Double.POSITIVE_INFINITY);
728 doubleTest(Double.MAX_VALUE - 1);
729 doubleTest(Double.MAX_VALUE);
730 doubleTest(Double.MAX_VALUE + 1);
731 doubleTest(Double
[all...]
H A DTupleBindingTest.java159 primitiveBindingTest(Double.class, Double.class,
160 new Double(123.123), 8);
176 primitiveBindingTest(Double.TYPE, Double.class,
177 new Double(123.123), 8);
245 new DoubleBinding().objectToEntry(new Double(123.123), entry);
275 new SortedDoubleBinding().objectToEntry(new Double(123.123), entry);
278 new Double(123.123));
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLCapabilities.cpp181 case Array::Double:
193 case Array::Double:
209 case Array::Double:
225 case Array::Double:
239 case Array::Double:
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGArrayMode.cpp72 return ArrayMode(Array::Double, nonArray, Array::AsIs).withProfile(locker, profile, makeSafe);
74 return ArrayMode(Array::Double, Array::Array, Array::AsIs).withProfile(locker, profile, makeSafe);
76 return ArrayMode(Array::Double, Array::PossiblyArray, Array::AsIs).withProfile(locker, profile, makeSafe);
115 type = Array::Double;
170 return withTypeAndConversion(Array::Double, Array::Convert);
177 return withTypeAndConversion(Array::Double, Array::Convert);
180 case Array::Double:
259 case Array::Double:
328 case Array::Double:
414 case Array::Double
[all...]
H A DDFGArrayifySlowPathGenerator.h62 case Array::Double:
83 case Array::Double:
100 case Array::Double:
H A DDFGArrayMode.h63 Double, enumerator in enum:JSC::DFG::Array::Type
233 case Array::Double:
309 case Array::Double:
356 case Array::Double:
372 case Array::Double:
402 case Array::Double:
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dbrowse64 bind .list <Double-Button-1> {foreach i [selection get] {browse $dir $i}}
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dbrowse62 bind .list <Double-Button-1> {foreach i [selection get] {browse $dir $i}}
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DWidenerInput.java323 return Double.valueOf(v);
347 return Double.valueOf(v);
368 return Double.valueOf(v);
386 return Double.valueOf(v);
401 return Double.valueOf(v);
423 return Double.valueOf(v);

Completed in 242 milliseconds

12345678