HomeSort by: relevance | last modified time | path
    Searched refs:Double (Results 1 - 25 of 100) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/sim/testsuite/sh/
fsqrt.s 29 # Double it.
31 # Double it again.
35 # Double it.
85 # Double it.
88 # Double it again.
94 # Double it.
fdiv.s 58 # Double test
64 # This add must be in single precision. The rest must be in double.
71 # double it, expect 1.0.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/sh/
fsqrt.s 29 # Double it.
31 # Double it again.
35 # Double it.
85 # Double it.
88 # Double it again.
94 # Double it.
fdiv.s 58 # Double test
64 # This add must be in single precision. The rest must be in double.
71 # double it, expect 1.0.
  /src/lib/libm/src/
b_log.c 94 static const double A1 = .08333333333333178827;
95 static const double A2 = .01250000000377174923;
96 static const double A3 = .002232139987919447809;
97 static const double A4 = .0004348877777076145742;
99 static const double logF_head[N+1] = {
231 static const double logF_tail[N+1] = {
364 * Extra precision variant, returning struct {double a, b;};
367 struct Double
368 __log__D(double x)
371 double F, f, g, q, u, v, u2
    [all...]
b_tgamma.c 88 static double neg_gam(double);
89 static double small_gam(double);
90 static double smaller_gam(double);
91 static struct Double large_gam(double);
92 static struct Double ratfun_gam(double, double)
    [all...]
math_private.h 49 * A union which permits us to convert between a long double and
57 long double value;
76 long double value;
92 * A union which permits us to convert between a double and two 32-bit
100 double value;
118 double value;
132 /* Get two 32-bit integers from a double. */
142 /* Get a 64-bit integer from a double. */
151 /* Get the more significant 32-bit integer from a double. */
160 /* Get the less significant 32-bit integer from a double. *
    [all...]
  /src/lib/libm/noieee_src/
n_gamma.c 78 static double neg_gam (double);
79 static double small_gam (double);
80 static double smaller_gam (double);
81 static struct Double large_gam (double);
82 static struct Double ratfun_gam (double, double)
    [all...]
mathimpl.h 71 const union { uint32_t l[2]; double d; } cat3(__,name,x) = { \
75 static const union { uint32_t l[2]; double d; } cat3(__,name,x) = { \
79 extern const union { uint32_t l[2]; double d; } cat3(__,name,x);
91 const double __CONCAT(__,name) = value;
94 static const double __CONCAT(__,name) = value;
97 extern const double __CONCAT(__,name);
117 extern double __exp__E(double, double);
118 extern double __log__L(double)
    [all...]
n_log.c 87 #define TRUNC(x) x = (double) (float) (x)
106 static const double A1 = .08333333333333178827;
107 static const double A2 = .01250000000377174923;
108 static const double A3 = .002232139987919447809;
109 static const double A4 = .0004348877777076145742;
111 static const double logF_head[N+1] = {
243 static const double logF_tail[N+1] = {
376 double
377 log(double x)
380 double F, f, g, q, u, u2, v, zero = 0.0, one = 1.0
    [all...]
n_pow.c 39 * DOUBLE PRECISION (VAX D format 56 bits, IEEE DOUBLE 53 BITS)
112 #define TRUNC(x) x = (double) (float) x
121 static const double zero=0.0, one=1.0, two=2.0, negone= -1.0;
123 static double pow_P (double, double);
135 return pow((double) x, (double) (y));
138 double
    [all...]
n_lgamma.c 73 /* double and float have same size exponent field */
74 #define TRUNC(x) x = (double) (float) (x)
82 static double small_lgam(double);
83 static double large_lgam(double);
84 static double neg_lgam(double, int *);
85 static const double one = 1.0;
143 double
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFloat.h 30 return U.Double.METHOD_CALL; \
76 /// Four formats are built-in: IEEE single precision, double precision,
77 /// quadruple precision, and x87 80-bit extended double (when operating with
134 /// New formats: x87 in single and double precision mode (IEEE apart from
256 explicit IEEEFloat(double d);
310 double convertToDouble() const;
710 DoubleAPFloat Double;
714 : Double(std::move(F)) {
725 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...);
737 Double.~DoubleAPFloat()
    [all...]
  /src/lib/libm/ld128/
b_logl.c 35 * bsdrc/b_log.c converted to long double by Steven G. Kargl.
65 static double logF_head[N+1] = {
197 static double logF_tail[N+1] = {
329 * Extra precision variant, returning struct {double a, b;};
332 static struct Double
333 __log__D(long double x)
336 long double F, f, g, q, u, v, u1, u2;
337 struct Double r;
367 u1 += m * (long double)logF_head[N] + logF_head[j];
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 401 Double,
427 explicit Variant(double V) : Type(PDB_VariantType::Double) {
428 Value.Double = V;
460 double Double;
497 VARIANT_WIDTH(Double, 64u)
540 case PDB_VariantType::Double:
543 return APFloat(Value.Double);
564 VARIANT_EQUAL_CASE(Double)
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-order-string.mk 12 # Double quotes and single quotes delimit words, while backticks are just
15 QUOTED_WORDS= none "double quoted" 'single quoted' `in backticks`
16 .if ${QUOTED_WORDS:O} != "\"double quoted\" 'single quoted' `in backticks` none"
escape.mk 72 # Double backslash in variable should be taken as two literal backslashes.
110 # Double-backslash-newline in a variable setting.
219 # Double-backslash-newline in a command.
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 250 // - \c double
264 VariantValue(double Double);
282 /// Double value functions.
284 double getDouble() const;
285 void setDouble(double Double);
344 double Double;
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 31 return "double";
262 VariantValue::VariantValue(double Double) : Type(VT_Nothing) {
263 setDouble(Double);
353 double VariantValue::getDouble() const {
355 return Value.Double;
358 void VariantValue::setDouble(double NewValue) {
361 Value.Double = NewValue;
481 case VT_Double: return "Double";
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Intrinsics.h 123 Double,
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
bitmanip.d 810 `double` separately. The definition is:
817 double value;
827 alias DoubleRep = FloatingPointRepresentation!double;
2318 // Rolls double word (upper, lower) to the right by n bits and returns the
2355 // Rolls double word (upper, lower) to the left by n bits and returns the
2957 else static if (is(immutable FloatingPointTypeOf!(T) == immutable double))
3038 double d = 123.45;
3040 assert(d == bigEndianToNative!double(swappedD));
3042 const double cd = 123.45;
3044 assert(cd == bigEndianToNative!double(swappedCD))
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
convert.d 40 static if (floatFormat!T == FloatFormat.Float || floatFormat!T == FloatFormat.Double)
78 // double precision portion from the real value.
83 enum msbSize = double.sizeof;
86 double hi = toPrec!double(val.im);
88 double hi = toPrec!double(val);
103 double low = toPrec!double(val.im - hi);
105 double low = toPrec!double(val - hi)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS)
357 case PDB_VariantType::Double:
358 OS << Value.Value.Double;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 112 IMPLEMENT_BINARY_OPERATOR(+, Double);
123 IMPLEMENT_BINARY_OPERATOR(-, Double);
134 IMPLEMENT_BINARY_OPERATOR(*, Double);
145 IMPLEMENT_BINARY_OPERATOR(/, Double);
377 IMPLEMENT_VECTOR_FCMP_T(OP, Double); \
385 IMPLEMENT_FCMP(==, Double);
424 MASK_VECTOR_NANS_T(X, Y, Double, FLAG) \
441 IMPLEMENT_FCMP(!=, Double);
461 IMPLEMENT_FCMP(<=, Double);
475 IMPLEMENT_FCMP(>=, Double);
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
ntp_parser.y 56 double Double;
108 %token <Double> T_Double /* not a token */
341 %type <Double> number
385 %type <Double> sim_server_offset
674 { $$ = create_attr_dval($1, (double)$2); }
678 { $$ = create_attr_dval($1, (double)$2); }
1706 : T_Integer { $$ = (double)$1; }

Completed in 45 milliseconds

1 2 3 4