Searched refs:decimal128 (Results 76 - 100 of 100) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/decimal/
H A Dconversion-from-integral.cc22 // ISO/IEC TR 24733 3.2.4.3 Conversion from integral type (decimal128).
136 decimal128 d;
137 decimal128 from_si (1);
138 decimal128 from_ui (2U);
139 decimal128 from_sl (3L);
140 decimal128 from_ul (4UL);
141 decimal128 from_sll (5LL);
142 decimal128 from_ull (6ULL);
167 decimal128 d;
168 decimal128 from_s
[all...]
H A Dcast_neg.cc38 decimal128 d128;
H A Dctor.cc22 // ISO/IEC TR 24733 3.2.4.1 Construct/copy/destroy (decimal128).
53 decimal128 a;
H A Dmake-decimal.cc105 decimal128 a, b, c, d;
108 unsigned long sz = sizeof (decimal128);
H A Dconversion-to-generic-float.cc78 std::decimal::decimal128 d128(345);
H A Dconversion-to-integral.cc22 // ISO/IEC TR 24733 3.2.4.4 Conversion to integral type (decimal128).
69 decimal128 a, b (1), c (-1), d (MAXVAL), e (-MAXVAL);
H A Dcompound-assignment-memfunc.cc22 // ISO/IEC TR 24733 3.2.4.6 Compound assignment (decimal128).
33 decimal128 d128 (25);
172 decimal128 a (1000), b;
188 decimal128 a (1000), b;
204 decimal128 a (1000), b;
220 decimal128 a (1000), b;
H A Dcompound-assignment.cc22 // ISO/IEC TR 24733 3.2.4.6 Compound assignment (decimal128).
31 decimal128 d128 (25);
170 decimal128 a (1000), b;
186 decimal128 a (1000), b;
202 decimal128 a (1000), b;
218 decimal128 a (1000), b;
H A Doperator_neg.cc30 decimal128 a128, b128, c128;
H A Dbinary-arith.cc29 decimal128 d128 (25);
252 decimal128 a (1000), b;
278 decimal128 a (1000), b;
305 decimal128 a (1000), b;
331 decimal128 a (1000), b;
H A Dcomparison.cc29 decimal128 d128 (25);
364 decimal128 a;
380 decimal128 a = 100;
396 decimal128 a = -100;
423 decimal128 a;
461 decimal128 a = 100;
488 decimal128 a;
H A Dincdec-memfunc.cc22 // ISO/IEC TR 24733 3.2.4.5 Increment and decrement operators (decimal128).
132 std::decimal::decimal128 a(11), b, c;
H A Dincdec.cc22 // ISO/IEC TR 24733 3.2.4.5 Increment and decrement operators (decimal128).
130 std::decimal::decimal128 a(11), b, c;
H A Dmixed-mode_neg.cc34 decimal128 a128, b128, c128;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/usr.bin/libdecnumber/
H A DMakefile12 SRCS= decNumber.c decContext.c decimal32.c decimal64.c decimal128.c
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libdecnumber/dpd/
H A Ddecimal128.c29 /* This module comprises the routines for decimal128 format numbers. */
44 #include "decimal128.h" /* our primary include */
56 void decimal128Show(const decimal128 *); /* for debug */
65 /* decimal128FromNumber -- convert decNumber to decimal128 */
67 /* ds is the target decimal128 */
81 decimal128 * decimal128FromNumber(decimal128 *d128, const decNumber *dn,
99 /* decimal128] */
191 /* decimal128ToNumber -- convert decimal128 to decNumber */
192 /* d128 is the source decimal128 */
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libdecnumber/dpd/
H A Ddecimal128.c29 /* This module comprises the routines for decimal128 format numbers. */
44 #include "decimal128.h" /* our primary include */
56 void decimal128Show(const decimal128 *); /* for debug */
65 /* decimal128FromNumber -- convert decNumber to decimal128 */
67 /* ds is the target decimal128 */
81 decimal128 * decimal128FromNumber(decimal128 *d128, const decNumber *dn,
99 /* decimal128] */
191 /* decimal128ToNumber -- convert decimal128 to decNumber */
192 /* d128 is the source decimal128 */
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libdecnumber/
H A DMakefile.in67 decimal32.$(objext) decimal64.$(objext) decimal128.$(objext) \
73 dpd/decimal128.c dpd/decimal128.h dpd/decimal128Symbols.h \
76 bid/decimal128.c bid/decimal128.h \
138 decimal128.$(objext): $(srcdir)/$(enable_decimal_float)/decimal128.c \
139 $(srcdir)/$(enable_decimal_float)/decimal128.h \
143 $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal128.c
150 host-ieee128.$(objext) : $(srcdir)/bid/host-ieee128.c $(srcdir)/bid/decimal128
[all...]
H A DdecQuad.h181 /* to force a dependency on decimal128 and decNumber in decQuad. */
182 /* decQuadFromNumber returns a decimal128 * to avoid warnings. */
183 #define decQuadToNumber(dq, dn) decimal128ToNumber((decimal128 *)(dq), dn)
184 #define decQuadFromNumber(dq, dn, set) decimal128FromNumber((decimal128 *)(dq), dn, set)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Ddfp.c32 decNumber structure is large enough to hold decimal128 digits. */
34 #include "decimal128.h"
70 decimal128FromNumber ((decimal128 *) r->sig, dn, context);
87 Encoding as a decimal128 is much more compact. */
116 decimal128ToNumber ((const decimal128 *) r->sig, dn);
235 /* Encode a real into an IEEE 754 decimal128 type. */
243 decimal128 d128;
276 /* Decode an IEEE 754 decimal128 type into a real. */
283 decimal128 d128;
325 const decimal128 *cons
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Ddfp.c27 decNumber structure is large enough to hold decimal128 digits. */
29 #include "dpd/decimal128.h"
115 decimal128FromNumber ((decimal128 *) to, from, &set);
134 decimal128ToNumber ((decimal128 *) from, to);
144 16 bytes for decimal128. */
162 decimal128ToString ((decimal128 *) dec, s);
172 decimal64 and 16 bytes for decimal128. */
191 decimal128FromString ((decimal128 *) dec, string, &set);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libdecnumber/
H A DdecQuad.h181 /* to force a dependency on decimal128 and decNumber in decQuad. */
182 /* decQuadFromNumber returns a decimal128 * to avoid warnings. */
183 #define decQuadToNumber(dq, dn) decimal128ToNumber((decimal128 *)(dq), dn)
184 #define decQuadFromNumber(dq, dn, set) decimal128FromNumber((decimal128 *)(dq), dn, set)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/
H A Ddfp-bit.c52 void __host_to_ieee_128 (_Decimal128 in, decimal128 *out);
53 void __ieee_to_host_128 (decimal128 in, _Decimal128 *out);
232 __host_to_ieee_128 (_Decimal128 in, decimal128 *out)
238 __ieee_to_host_128 (decimal128 in, _Decimal128 *out)
H A Ddfp-bit.h99 #define IEEE_TYPE decimal128
179 #define IEEE_TYPE_TO decimal128
302 #include "decimal128.h"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid_gcc_intrinsics.h282 union decimal128 { union

Completed in 203 milliseconds

1234