/external/llvm-project/polly/lib/External/isl/ |
D | isl_input.c | 736 struct vars *v, __isl_take isl_map *map, int rational); 738 __isl_take isl_space *space, struct vars *v, int rational); 743 __isl_take isl_map *cond, struct vars *v, int rational) in accept_ternary() argument 755 pwaff1 = accept_extended_affine(s, space, v, rational); in accept_ternary() 763 pwaff2 = accept_extended_affine(s, space, v, rational); in accept_ternary() 836 __isl_take isl_space *space, struct vars *v, int rational) in accept_extended_affine() argument 845 if (rational) in accept_extended_affine() 860 cond = read_formula(s, v, cond, rational); in accept_extended_affine() 862 return accept_ternary(s, cond, v, rational); in accept_extended_affine() 867 int rational) in read_var_def() argument [all …]
|
D | isl_aff_map.c | 65 __isl_take isl_aff *aff, int rational) in isl_basic_map_from_aff2() argument 96 if (rational) in isl_basic_map_from_aff2() 132 __isl_take isl_multi_aff *maff, int rational) in isl_basic_map_from_multi_aff2() argument 149 if (rational) in isl_basic_map_from_multi_aff2() 157 bmap_i = isl_basic_map_from_aff2(aff, rational); in isl_basic_map_from_multi_aff2() 348 isl_bool rational; in isl_map_from_pw_multi_aff_internal() local 353 rational = isl_set_is_rational(pma->p[i].set); in isl_map_from_pw_multi_aff_internal() 354 if (rational < 0) in isl_map_from_pw_multi_aff_internal() 357 bmap = isl_basic_map_from_multi_aff2(maff, rational); in isl_map_from_pw_multi_aff_internal()
|
D | isl_output_private.h | 26 __isl_take isl_printer *p, int rational,
|
D | pip.c | 348 int rational = 0; in main() local 369 rational = 1; in main() 408 assert(!rational); in main()
|
D | isl_tab.c | 81 tab->rational = 0; in isl_tab_alloc() 289 dup->rational = tab->rational; in isl_tab_dup() 445 isl_assert(tab1->mat->ctx, tab1->rational == tab2->rational, return NULL); in isl_tab_product() 542 prod->rational = tab1->rational; in isl_tab_product() 989 if (!tab->rational && tab->need_undo) in isl_tab_mark_rational() 992 tab->rational = 1; in isl_tab_mark_rational() 1603 if (tab->rational) in tab_is_manifestly_empty() 2409 tab->rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL); in isl_tab_from_basic_map() 2461 tab->rational = ISL_F_ISSET(bset, ISL_BASIC_SET_RATIONAL); in isl_tab_from_recession_cone() 2658 if (!tab->rational && in isl_basic_map_update_from_tab() [all …]
|
D | isl_multi_read_no_explicit_domain_templ.c | 20 struct vars *v, __isl_take isl_space *space, int rational, void *user) in FN()
|
/external/llvm-project/libclc/generic/lib/math/ |
D | asin.cl | 36 // where R(x^2) is a rational minimax approximation to 40 // together with the above rational approximation, and 61 // Use a rational approximation for [0.0, 0.5] 102 // where R(x^2) is a rational minimax approximation to 106 // together with the above rational approximation, and 124 // Use a rational approximation for [0.0, 0.5]
|
D | acos.cl | 36 // where R(x^2) is a rational minimax approximation to 40 // together with the above rational approximation, and 63 // Use a rational approximation for [0.0, 0.5] 105 // where R(x^2) is a rational minimax approximation to 109 // together with the above rational approximation, and 128 // Use a rational approximation for [0.0, 0.5]
|
D | asinpi.cl | 36 // where R(x^2) is a rational minimax approximation to 40 // together with the above rational approximation, and 64 // Use a rational approximation for [0.0, 0.5] 105 // where R(x^2) is a rational minimax approximation to 109 // together with the above rational approximation, and 127 // Use a rational approximation for [0.0, 0.5]
|
D | acospi.cl | 37 // where R(x^2) is a rational minimax approximation to 41 // together with the above rational approximation, and 64 // Use a rational approximation for [0.0, 0.5] 105 // where R(x^2) is a rational minimax approximation to 109 // together with the above rational approximation, and 129 // Use a rational approximation for [0.0, 0.5]
|
D | erf.cl | 228 * That is, we use rational approximation to approximate 263 * We use rational approximation to approximate 353 // Evaluate rational poly 377 // Compute rational approximation
|
/external/python/cpython2/Doc/library/ |
D | fractions.rst | 14 The :mod:`fractions` module provides support for rational number arithmetic. 18 another rational number, or from a string. 112 rational approximations to a given floating-point number: 118 or for recovering a rational number that's represented as a float:
|
/external/python/cpython3/Doc/library/ |
D | fractions.rst | 14 The :mod:`fractions` module provides support for rational number arithmetic. 18 another rational number, or from a string. 136 rational approximations to a given floating-point number: 142 or for recovering a rational number that's represented as a float:
|
/external/python/pyasn1/docs/source/pyasn1/type/univ/ |
D | real.rst | 14 The |ASN.1| type models a rational number of arbitrary precision.
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | UnitConverter.java | 1297 public String showRational(String title, Rational rational, String unit) { in showRational() argument 1298 String doubleString = showRational2(rational, " = ", " ≅ "); in showRational() 1299 final String endResult = title + rational + doubleString + (unit != null ? " " + unit: ""); in showRational() 1303 public String showRational(Rational rational, String approximatePrefix) { in showRational() argument 1304 String doubleString = showRational2(rational, "", approximatePrefix); in showRational() 1305 return doubleString.isEmpty() ? rational.numerator.toString() : doubleString; in showRational() 1308 public String showRational2(Rational rational, String equalPrefix, String approximatePrefix) { in showRational2() argument 1310 if (!rational.denominator.equals(BigInteger.ONE)) { in showRational2() 1311 … String doubleValue = String.valueOf(rational.toBigDecimal(MathContext.DECIMAL32).doubleValue()); in showRational2() 1313 … doubleString = (reverse.equals(rational) ? equalPrefix : approximatePrefix) + doubleValue; in showRational2()
|
/external/pigweed/pw_chrono/ |
D | docs.rst | 20 risk as long as rational durations and time points as used, i.e. within a range
|
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/ |
D | separate2.in | 1 # Check that rational affine expressions are printer properly.
|
/external/starlark-go/starlark/ |
D | value.go | 468 func (f Float) rational() *big.Rat { return new(big.Rat).SetFloat64(float64(f)) } func 1287 cmp = x.rational().Cmp(y.rational()) // y is finite 1301 cmp = x.rational().Cmp(y.rational()) // x is finite
|
D | int.go | 328 func (i Int) rational() *big.Rat { func 431 rat := f.rational()
|
/external/abseil-cpp/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|
/external/angle/third_party/abseil-cpp/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|
/external/webrtc/third_party/abseil-cpp/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|
/external/openscreen/third_party/abseil/src/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|
/external/libtextclassifier/abseil-cpp/absl/base/internal/ |
D | spinlock_linux.inc | 32 // by SYS_futex have rational semantics with regard to the
|