/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | ratio | 24 static constexpr intmax_t den; 25 typedef ratio<num, den> type; 252 static _LIBCPP_CONSTEXPR const intmax_t den = __da / __gcd; 254 typedef ratio<num, den> type; 261 _LIBCPP_CONSTEXPR 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; 315 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; 321 typedef typename ratio< __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, [all …]
|
/freebsd/contrib/less/ |
H A D | os.c | 453 * Return (VAL * NUM) / DEN, where DEN is positive 454 * and min(VAL, NUM) <= DEN so the result cannot overflow. 457 public uintmax umuldiv(uintmax val, uintmax num, uintmax den) in umuldiv() argument 460 * Like round(val * (double) num / den), but without rounding error. in umuldiv() 463 uintmax q = val / den; in umuldiv() 464 uintmax r = val % den; in umuldiv() 467 uintmax quot = qnum + rnum / den; in umuldiv() 468 uintmax rem = rnum % den; in umuldiv() 469 return quot + (den / 2 < rem + (quot & ~den & 1)); in umuldiv() 476 public int percentage(POSITION num, POSITION den) in percentage() argument [all …]
|
/freebsd/crypto/libecc/src/fp/ |
H A D | fp_mul.c | 102 * Compute out such that num = out * den mod p. 'out' parameter must have been initialized 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/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCodeGenPrepare.cpp | 243 Value *Num, Value *Den) const; 245 Value *Num, Value *Den, 250 Value *Num, Value *Den, 254 Value *Num, Value *Den, unsigned NumBits, 259 Value *Num, Value *Den) const; 262 Value *Num, Value *Den) const; 281 Value *optimizeWithRsq(IRBuilder<> &Builder, Value *Num, Value *Den, 285 Value *optimizeWithRcp(IRBuilder<> &Builder, Value *Num, Value *Den, 287 Value *optimizeWithFDivFast(IRBuilder<> &Builder, Value *Num, Value *Den, 290 Value *visitFDivElement(IRBuilder<> &Builder, Value *Num, Value *Den, [all …]
|
/freebsd/usr.bin/vi/catalog/ |
H A D | swedish.UTF-8.base | 87 094 "Den andra adressen är mindre än den första" 252 262 "Filen har ändrats efter den sparats; spara eller använd !" 253 263 "Filen har ändrats efter den sparats; spara eller använd :edit!" 254 264 "Filen har ändrats efter den sparats; spara eller använd !" 262 272 "Den formen av %s kräver \"ex\" i terminalläge" 274 284 "Den formen av %s är inte tillgänglig när secure edit flaggan är satt" 292 303 "Filen har ändrats efter den sparats."
|
H A D | german.UTF-8.base | 56 062 "Informationen über den Benutzer mit id %u nicht gefunden" 191 199 "Bewegung vor den Dateianfang" 212 221 "Bewegung vor den Anzeigenanfang" 216 225 "Die einzige dargestellte Anzeige kann nicht in den Hintergrund gebracht werden"
|
/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/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()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/firmware/ |
H A D | sdei.txt | 4 ARM DEN 0054A ("Software Delegated Exception Interface") can be used by 13 Convention (ARM DEN 0028B):
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | duration.h | 68 bool = _Period::den == 1> 83 …_cast<typename _ToDuration::rep>(static_cast<_Ct>(__fd.count()) / static_cast<_Ct>(_Period::den))); 101 …static_cast<_Ct>(__fd.count()) * static_cast<_Ct>(_Period::num) / static_cast<_Ct>(_Period::den))); 169 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; 171 static const intmax_t __d1 = _R1::den / __gcd_d1_d2; 173 static const intmax_t __d2 = _R2::den / __gcd_d1_d2; 216 … (__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 const size_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/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_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_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_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"
|
H A D | de_CH.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_CH.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_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.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_DE.utf8.msg | 71 21 "POSIX erlaubt den Operator \"%s\" nicht" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|