| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | ratio | 24 static constexpr intmax_t den; 25 typedef ratio<num, den> type; 252 static const intmax_t den = __da / __gcd; 254 typedef ratio<num, den> type; 261 const intmax_t ratio<_Num, _Den>::den; 288 static const intmax_t __gcd_n1_d2 = __static_gcd<_R1::num, _R2::den>::value; 289 static const intmax_t __gcd_d1_n2 = __static_gcd<_R1::den, _R2::num>::value; 296 … __ll_mul<_R2::den / __gcd_n1_d2, _R1::den / __gcd_d1_n2>::value >::type type; 306 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; 312 typedef typename ratio< __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | ratio | 24 static constexpr intmax_t den; 25 typedef ratio<num, den> type; 243 static inline _LIBCPP_CONSTEXPR const intmax_t den = __da / __gcd; 245 typedef ratio<num, den> type; 274 static const intmax_t __gcd_n1_d2 = __static_gcd<_R1::num, _R2::den>; 275 static const intmax_t __gcd_d1_n2 = __static_gcd<_R1::den, _R2::num>; 282 … __ll_mul<_R2::den / __gcd_n1_d2, _R1::den / __gcd_d1_n2>::value >::type type; 301 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>; 307 typedef typename ratio< __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, 308 … __ll_mul<_R2::num / __gcd_n1_n2, _R1::den / __gcd_d1_d2>::value >::type type; [all …]
|
| /freebsd/stand/ficl/ |
| H A D | math64.c | 91 INTQR m64FlooredDivI(DPINT num, FICL_INT den) in m64FlooredDivI() argument 104 if (den < 0) in m64FlooredDivI() 106 den = -den; in m64FlooredDivI() 111 uqr = ficlLongDiv(m64CastIU(num), (FICL_UNS)den); in m64FlooredDivI() 119 qr.rem = den - qr.rem; in m64FlooredDivI() 260 INTQR m64SymmetricDivI(DPINT num, FICL_INT den) in m64SymmetricDivI() argument 274 if (den < 0) in m64SymmetricDivI() 276 den = -den; in m64SymmetricDivI() 280 uqr = ficlLongDiv(m64CastIU(num), (FICL_UNS)den); in m64SymmetricDivI()
|
| H A D | math64.h | 56 INTQR m64FlooredDivI(DPINT num, FICL_INT den); 61 INTQR m64SymmetricDivI(DPINT num, FICL_INT den);
|
| /freebsd/crypto/libecc/src/fp/ |
| H A D | fp_mul.c | 107 int fp_div(fp_t out, fp_src_t num, fp_src_t den) in fp_div() argument 112 ret = fp_check_initialized(den); EG(ret, err); in fp_div() 116 MUST_HAVE(out->ctx == den->ctx, ret, err); in fp_div() 124 ret = fp_inv(out, den); EG(ret, err1); in fp_div() 132 ret = fp_inv(out, den); EG(ret, err); in fp_div()
|
| /freebsd/contrib/less/ |
| H A D | os.c | 500 public uintmax umuldiv(uintmax val, uintmax num, uintmax den) in umuldiv() argument 506 uintmax q = val / den; in umuldiv() 507 uintmax r = val % den; in umuldiv() 510 uintmax quot = qnum + rnum / den; in umuldiv() 511 uintmax rem = rnum % den; in umuldiv() 512 return quot + (den / 2 < rem + (quot & ~den & 1)); in umuldiv() 519 public int percentage(POSITION num, POSITION den) in percentage() argument 521 return (int) muldiv(num, 100, den); in percentage()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__chrono/ |
| H A D | duration.h | 66 bool = _Period::den == 1> 81 …_cast<typename _ToDuration::rep>(static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::den))); 99 …static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) / static_cast<_Ct>(_Period::den))); 133 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; 135 static const intmax_t __d1 = _R1::den / __gcd_d1_d2; 137 static const intmax_t __d2 = _R2::den / __gcd_d1_d2; 176 … (__no_overflow<_Period2, period>::type::den == 1 &&
|
| /freebsd/contrib/llvm-project/libcxx/include/__random/ |
| H A D | shuffle_order_engine.h | 49 static _LIBCPP_CONSTEXPR const uint64_t den = _Dp / __gcd; 51 typedef __uratio<num, den> type; 153 return __evalf<__uratio<_Np, _Dp>::num, __uratio<_Np, _Dp>::den>(); 160 …ize_t __j = static_cast<size_t>(__uratio<_Np, _Dp>::num * (__y_ - _Min) / __uratio<_Np, _Dp>::den);
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__random/ |
| H A D | shuffle_order_engine.h | 49 static const uint64_t den = _Dp / __gcd; 51 typedef __uratio<num, den> type; 145 return __evalf<__uratio<_Np, _Dp>::num, __uratio<_Np, _Dp>::den>(); 152 …ize_t __j = static_cast<size_t>(__uratio<_Np, _Dp>::num * (__y_ - _Min) / __uratio<_Np, _Dp>::den);
|
| /freebsd/usr.bin/units/ |
| H A D | units.c | 445 char **den, **num; in cancelunit() local 448 den = theunit->denominator; in cancelunit() 451 while (*num && *den) { in cancelunit() 452 comp = strcmp(*den, *num); in cancelunit() 454 /* if (*den!=NULLUNIT) free(*den); in cancelunit() 456 *den++ = NULLUNIT; in cancelunit() 460 den++; in cancelunit()
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | duration.h | 67 bool = _Period::den == 1> 82 …_cast<typename _ToDuration::rep>(static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::den))); 100 …static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) / static_cast<_Ct>(_Period::den))); 168 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>; 170 static const intmax_t __d1 = _R1::den / __gcd_d1_d2; 172 static const intmax_t __d2 = _R2::den / __gcd_d1_d2; 215 … (__no_overflow<_Period2, period>::type::den == 1 &&
|
| H A D | hh_mm_ss.h | 50 __width(__CommonType::period::den) < 19 ? __width(__CommonType::period::den) : 6u;
|
| /freebsd/crypto/openssh/ |
| H A D | ed25519.c | 1790 fe25519 t, chk, num, den, den2, den4, den6; in ge25519_unpackneg_vartime() local 1795 fe25519_mul(&den, &num, &ge25519_ecd); /* den = dy^2 */ in ge25519_unpackneg_vartime() 1797 fe25519_add(&den, &r->z, &den); /* den = dy^2+1 */ in ge25519_unpackneg_vartime() 1801 fe25519_square(&den2, &den); in ge25519_unpackneg_vartime() 1805 fe25519_mul(&t, &t, &den); in ge25519_unpackneg_vartime() 1810 fe25519_mul(&t, &t, &den); in ge25519_unpackneg_vartime() 1811 fe25519_mul(&t, &t, &den); in ge25519_unpackneg_vartime() 1812 fe25519_mul(&r->x, &t, &den); in ge25519_unpackneg_vartime() 1816 fe25519_mul(&chk, &chk, &den); in ge25519_unpackneg_vartime() 1822 fe25519_mul(&chk, &chk, &den); in ge25519_unpackneg_vartime()
|
| /freebsd/contrib/tcsh/nls/german/ |
| H A D | set3 | 7 5 Gehe an den Anfang des aktuellen Worts 56 54 Expandiere Befehle in den entsprechenden Pfadnamen oder Alias 62 60 Suche nach Hilfe für den aktuellen Befehl 116 114 Füge den Cut-Puffer an der Cursor-Position ein
|
| /freebsd/crypto/libecc/include/libecc/fp/ |
| H A D | fp_mul.h | 24 ATTRIBUTE_WARN_UNUSED_RET int fp_div(fp_t out, fp_src_t num, fp_src_t den);
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | chrono.cpp | 207 auto dur = seconds * nano::den + fractions * nano::den / freq.QuadPart; in __libcpp_steady_clock_now()
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | silabs,si5341.txt | 52 - silabs,pll-m-num, silabs,pll-m-den: Numerator and denominator for PLL 54 example, to create 14GHz from a 48MHz xtal, use m-num=14000 and m-den=48. Only 118 silabs,pll-m-den = <48>;
|
| /freebsd/contrib/bc/locales/ |
| H A D | de_DE.ISO8859-1.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.UTF-8.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.utf8.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.ISO8859-1.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.ISO8859-15.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.UTF-8.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.utf8.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.ISO8859-1.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|