Home
last modified time | relevance | path

Searched +defs:eq +defs:fn (Results 1 – 25 of 1931) sorted by relevance

12345678910>>...78

/dports/math/py-mathics/Mathics3-2.2.0/mathics/packages/analytica/
H A DGosperSum.m89 fn = Sum[f[ii] var^ii, {ii, 0, dk}]; variable
90 eq = Expand[pn - qn fn + rn Subvar[fn, var, var-1]]; variable
91 eq = CoefficientList[eq, var]; variable
92 eq = Solve[Thread[eq == 0], Array[f, dk+1, 0]]; variable
94 fn = fn /. eq[[1]]; variable
95 fn = fn /. f[0] -> 0; (* summation constant *) variable
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/test/
H A DOsiCbcSolverInterfaceTest.cpp62 CoinRelFltEq eq; in OsiCbcSolverInterfaceUnitTest() local
64 std::string fn = mpsDir + "exmip1"; in OsiCbcSolverInterfaceUnitTest() local
132 std::string fn = mpsDir + "exmip1"; in OsiCbcSolverInterfaceUnitTest() local
203 CoinRelFltEq eq; in OsiCbcSolverInterfaceUnitTest() local
293 CoinRelFltEq eq; in OsiCbcSolverInterfaceUnitTest() local
322 CoinRelFltEq eq; in OsiCbcSolverInterfaceUnitTest() local
582 std::string fn = mpsDir + "p0033"; in OsiCbcSolverInterfaceUnitTest() local
592 CoinRelFltEq eq(1.0e-2); in OsiCbcSolverInterfaceUnitTest() local
634 std::string fn = mpsDir + "p0033"; in OsiCbcSolverInterfaceUnitTest() local
758 std::string fn = mpsDir + "p0033"; in OsiCbcSolverInterfaceUnitTest() local
[all …]
/dports/math/osi/Osi-0.108.6/Osi/test/
H A DOsiGlpkSolverInterfaceTest.cpp57 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
59 std::string fn = mpsDir+"exmip1"; in OsiGlpkSolverInterfaceUnitTest() local
217 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
266 std::string fn = mpsDir+"exmip1"; in OsiGlpkSolverInterfaceUnitTest() local
302 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
332 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
586 std::string fn = mpsDir+"p0033"; in OsiGlpkSolverInterfaceUnitTest() local
596 CoinRelFltEq eq(1.0e-2); in OsiGlpkSolverInterfaceUnitTest() local
/dports/math/clp/Clp-1.17.3/Osi/test/
H A DOsiGlpkSolverInterfaceTest.cpp57 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
59 std::string fn = mpsDir+"exmip1"; in OsiGlpkSolverInterfaceUnitTest() local
217 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
266 std::string fn = mpsDir+"exmip1"; in OsiGlpkSolverInterfaceUnitTest() local
302 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
332 CoinRelFltEq eq; in OsiGlpkSolverInterfaceUnitTest() local
586 std::string fn = mpsDir+"p0033"; in OsiGlpkSolverInterfaceUnitTest() local
596 CoinRelFltEq eq(1.0e-2); in OsiGlpkSolverInterfaceUnitTest() local
/dports/audio/codec2/codec2-1.0.3/octave/
H A Dvq_700c_eq.m25 fn = sprintf("../build_linux/%s%s", name, ext) variable
85 eq = eqs(end,:); variable
92 eq = (1-gain)*eq + gain*error; variable
111 eq = 0.99*eq + gain*error_eq/nblock; variable
137 eq = (1-gain)*eq + gain*eq_error; variable
173 fn = sprintf("../script/%s_feat.f32", name); variable
184 eq = zeros(1,K); gain = 0.02; variable
188 eq = (1-gain)*eq + gain*update; variable
323 eq = zeros(1,K); variable
/dports/databases/postgresql12-pltcl/postgresql-12.9/src/tools/editors/
H A Demacs.samples30 (add-hook 'c-mode-hook
60 (add-hook 'perl-mode-hook
73 (when (string-match "/postgres\\(ql\\)?/" buffer-file-name)
89 ;; use GNU make mode instead of plain make mode
/dports/lang/rust/rustc-1.58.1-src/library/std/src/net/
H A Dip.rs292 pub const fn is_global(&self) -> bool { in is_global() const
394 pub const fn is_ipv4(&self) -> bool { in is_ipv4() const
415 pub const fn is_ipv6(&self) -> bool { in is_ipv6() const
523 pub const fn octets(&self) -> [u8; 4] { in octets() const
704 pub const fn is_global(&self) -> bool { in is_global() const
1046 fn eq(&self, other: &Ipv4Addr) -> bool { in eq() method
1054 fn eq(&self, other: &Ipv4Addr) -> bool { in eq() method
1065 fn eq(&self, other: &IpAddr) -> bool { in eq() method
1867 fn eq(&self, other: &Ipv6Addr) -> bool { in eq() method
1875 fn eq(&self, other: &IpAddr) -> bool { in eq() method
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/rfc-2632-const-trait-impl/
H A Dcall-generic-method-chain.rs11 fn eq(&self, _: &S) -> bool { in eq() method
19 const fn equals_self<T: ~const PartialEq>(t: &T) -> bool { in equals_self() const
23 const fn equals_self_wrapper<T: ~const PartialEq>(t: &T) -> bool { in equals_self_wrapper() const
H A Dcall-generic-method-dup-bound.rs9 fn eq(&self, _: &S) -> bool { in eq() method
19 const fn equals_self<T: PartialEq + ~const PartialEq>(t: &T) -> bool { in equals_self() const
26 const fn equals_self2<T: A + ~const PartialEq>(t: &T) -> bool { in equals_self2() const
H A Dcall-generic-method-nonconst-bound.rs8 fn eq(&self, _: &S) -> bool { in eq() method
13 const fn equals_self<T: PartialEq>(t: &T) -> bool { in equals_self() const
H A Dcall-generic-method-nonconst.rs7 fn eq(&self, _: &S) -> bool { in eq() method
12 const fn equals_self<T: ~const PartialEq>(t: &T) -> bool { in equals_self() const
/dports/misc/broot/broot-1.7.0/cargo-crates/str-buf-1.0.5/src/
H A Dlib.rs64 pub const fn new() -> Self { in new() const
94 pub const fn as_ptr(&self) -> *const u8 { in as_ptr() const
100 pub const fn remaining(&self) -> usize { in remaining() const
142 pub const fn capacity() -> usize { in capacity() const
148 pub const fn len(&self) -> usize { in len() const
272 fn eq(&self, other: &Self) -> bool { in eq() method
279 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
287 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
294 fn eq(&self, other: &str) -> bool { in eq() method
301 fn eq(&self, other: &&str) -> bool { in eq() method
/dports/editors/helix/helix-0.5.0/cargo-crates/str-buf-1.0.5/src/
H A Dlib.rs64 pub const fn new() -> Self { in new() const
94 pub const fn as_ptr(&self) -> *const u8 { in as_ptr() const
100 pub const fn remaining(&self) -> usize { in remaining() const
142 pub const fn capacity() -> usize { in capacity() const
148 pub const fn len(&self) -> usize { in len() const
272 fn eq(&self, other: &Self) -> bool { in eq() method
279 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
287 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
294 fn eq(&self, other: &str) -> bool { in eq() method
301 fn eq(&self, other: &&str) -> bool { in eq() method
/dports/sysutils/fselect/fselect-0.7.7/cargo-crates/str-buf-1.0.5/src/
H A Dlib.rs64 pub const fn new() -> Self { in new() const
94 pub const fn as_ptr(&self) -> *const u8 { in as_ptr() const
100 pub const fn remaining(&self) -> usize { in remaining() const
142 pub const fn capacity() -> usize { in capacity() const
148 pub const fn len(&self) -> usize { in len() const
272 fn eq(&self, other: &Self) -> bool { in eq() method
279 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
287 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
294 fn eq(&self, other: &str) -> bool { in eq() method
301 fn eq(&self, other: &&str) -> bool { in eq() method
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/str-buf-1.0.5/src/
H A Dlib.rs64 pub const fn new() -> Self { in new() const
94 pub const fn as_ptr(&self) -> *const u8 { in as_ptr() const
100 pub const fn remaining(&self) -> usize { in remaining() const
142 pub const fn capacity() -> usize { in capacity() const
148 pub const fn len(&self) -> usize { in len() const
272 fn eq(&self, other: &Self) -> bool { in eq() method
279 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
287 fn eq(&self, other: &StrBuf<S>) -> bool { in eq() method
294 fn eq(&self, other: &str) -> bool { in eq() method
301 fn eq(&self, other: &&str) -> bool { in eq() method
/dports/math/clp/Clp-1.17.3/Clp/test/
H A DOsiClpSolverInterfaceTest.cpp67 CoinRelFltEq eq; in OsiClpSolverInterfaceUnitTest() local
69 std::string fn = mpsDir+"exmip1"; in OsiClpSolverInterfaceUnitTest() local
151 std::string fn = mpsDir+"exmip1"; in OsiClpSolverInterfaceUnitTest() local
219 CoinRelFltEq eq; in OsiClpSolverInterfaceUnitTest() local
300 CoinRelFltEq eq; in OsiClpSolverInterfaceUnitTest() local
347 CoinRelFltEq eq; in OsiClpSolverInterfaceUnitTest() local
615 std::string fn = mpsDir+"p0033"; in OsiClpSolverInterfaceUnitTest() local
625 CoinRelFltEq eq(1.0e-2); in OsiClpSolverInterfaceUnitTest() local
649 std::string fn = mpsDir+"p0033"; in OsiClpSolverInterfaceUnitTest() local
677 CoinRelFltEq eq(1.0e-2); in OsiClpSolverInterfaceUnitTest() local
[all …]
/dports/net/nng/nng-1.5.2/src/core/
H A Daio.c118 nni_aio_cancel_fn fn; in nni_aio_fini() local
120 nni_aio_expire_q *eq = aio->a_expire_q; in nni_aio_fini() local
204 nni_aio_cancel_fn fn; in nni_aio_stop() local
206 nni_aio_expire_q *eq = aio->a_expire_q; in nni_aio_stop() local
229 nni_aio_cancel_fn fn; in nni_aio_close() local
326 nni_aio_expire_q *eq = aio->a_expire_q; in nni_aio_begin() local
365 nni_aio_expire_q *eq = aio->a_expire_q; in nni_aio_schedule() local
408 nni_aio_cancel_fn fn; in nni_aio_abort() local
410 nni_aio_expire_q *eq = aio->a_expire_q; in nni_aio_abort() local
756 nni_aio_expire_q *eq; in nni_aio_expire_q_alloc() local
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/intrinsics/
H A Dconst-eval-select-x86_64.rs9 const fn eq_ct(x: [i32; 4], y: [i32; 4]) -> bool { in eq_ct() const
23 const fn eq(x: [i32; 4], y: [i32; 4]) -> bool { in eq() const
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/psl-types-2.0.9/src/
H A Dlib.rs113 pub const fn as_bytes(&self) -> &'a [u8] { in as_bytes() const
119 pub const fn is_fqdn(&self) -> bool { in is_fqdn() const
125 pub const fn typ(&self) -> Option<Type> { in typ() const
149 fn eq(&self, other: &Self) -> bool { in eq() method
156 fn eq(&self, other: &&[u8]) -> bool { in eq() method
163 fn eq(&self, other: &&str) -> bool { in eq() method
206 pub const fn as_bytes(&self) -> &'a [u8] { in as_bytes() const
212 pub const fn suffix(&self) -> Suffix<'_> { in suffix() const
229 fn eq(&self, other: &Self) -> bool { in eq() method
236 fn eq(&self, other: &&[u8]) -> bool { in eq() method
[all …]
/dports/www/xh/xh-0.14.1/cargo-crates/psl-types-2.0.7/src/
H A Dlib.rs112 pub const fn as_bytes(&self) -> &[u8] { in as_bytes() const
118 pub const fn is_fqdn(&self) -> bool { in is_fqdn() const
124 pub const fn typ(&self) -> Option<Type> { in typ() const
148 fn eq(&self, other: &Self) -> bool { in eq() method
155 fn eq(&self, other: &&[u8]) -> bool { in eq() method
162 fn eq(&self, other: &&str) -> bool { in eq() method
204 pub const fn as_bytes(&self) -> &[u8] { in as_bytes() const
210 pub const fn suffix(&self) -> Suffix<'_> { in suffix() const
227 fn eq(&self, other: &Self) -> bool { in eq() method
234 fn eq(&self, other: &&[u8]) -> bool { in eq() method
[all …]
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/psl-types-2.0.10/src/
H A Dlib.rs113 pub const fn as_bytes(&self) -> &'a [u8] { in as_bytes() const
119 pub const fn is_fqdn(&self) -> bool { in is_fqdn() const
125 pub const fn typ(&self) -> Option<Type> { in typ() const
149 fn eq(&self, other: &Self) -> bool { in eq() method
156 fn eq(&self, other: &&[u8]) -> bool { in eq() method
163 fn eq(&self, other: &&str) -> bool { in eq() method
206 pub const fn as_bytes(&self) -> &'a [u8] { in as_bytes() const
212 pub const fn suffix(&self) -> Suffix<'_> { in suffix() const
229 fn eq(&self, other: &Self) -> bool { in eq() method
236 fn eq(&self, other: &&[u8]) -> bool { in eq() method
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/algorithms/alg.sorting/alg.clamp/
H A Dclamp.pass.cpp17 #include <cassert> in new()
31 // bool operator==(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val; } in into_unicase()
96 Tag z{2, "Two-z"}; in into_inner()
103 Tag x{0, "Zero-x"}; in into_inner()
110 // If the value is greater than 'hi', we should get hi back. in into_inner()
/dports/games/NBlood/NBlood-a1689a4/source/kenbuild/src/
H A Dconfig.cpp47 char buf[1000], *k, *v, *eq; in readconfig() local
124 int Ken_loadsetup(const char *fn) in Ken_loadsetup()
186 int Ken_writesetup(const char *fn) in Ken_writesetup()
/dports/sysutils/apcupsd/apcupsd-3.14.14/src/cgi/
H A Dcgilib.c37 char *query, *ptr, *eq, *varname, *value, *amp; in extractcgiargs() local
79 char fn[256], buf[500], addr[256]; in checkhost() local
149 char fn[256], buf[500]; in html_begin() local
/dports/sysutils/apcctrl/apcctrl-0.8.21/src/cgi/
H A Dcgilib.c37 char *query, *ptr, *eq, *varname, *value, *amp; in extractcgiargs() local
79 char fn[256], buf[500], addr[256]; in checkhost() local
149 char fn[256], buf[500]; in html_begin() local

12345678910>>...78