Home
last modified time | relevance | path

Searched refs:lcons (Results 1 – 25 of 1649) sorted by relevance

12345678910>>...66

/dports/devel/boost-docs/boost_1_72_0/libs/hana/example/misc/
H A Dinfinite_list.cpp58 static constexpr auto apply(Xs&& lcons, N const& n) { in apply()
59 return hana::drop_front(lcons, n).x; in apply()
66 constexpr auto operator()(Xs const& lcons) const { in operator ()()
67 return hana::eval(lcons.xs); in operator ()()
79 static constexpr auto apply(Xs&& lcons, N const&) { in apply()
80 return hana::iterate<N::value>(detail::eval_tail{}, lcons); in apply()
/dports/devel/boost-python-libs/boost_1_72_0/libs/hana/example/misc/
H A Dinfinite_list.cpp58 static constexpr auto apply(Xs&& lcons, N const& n) { in apply()
59 return hana::drop_front(lcons, n).x; in apply()
66 constexpr auto operator()(Xs const& lcons) const { in operator ()()
67 return hana::eval(lcons.xs); in operator ()()
79 static constexpr auto apply(Xs&& lcons, N const&) { in apply()
80 return hana::iterate<N::value>(detail::eval_tail{}, lcons); in apply()
/dports/devel/boost-libs/boost_1_72_0/libs/hana/example/misc/
H A Dinfinite_list.cpp58 static constexpr auto apply(Xs&& lcons, N const& n) { in apply()
59 return hana::drop_front(lcons, n).x; in apply()
66 constexpr auto operator()(Xs const& lcons) const { in operator ()()
67 return hana::eval(lcons.xs); in operator ()()
79 static constexpr auto apply(Xs&& lcons, N const&) { in apply()
80 return hana::iterate<N::value>(detail::eval_tail{}, lcons); in apply()
/dports/devel/hyperscan/boost_1_75_0/libs/hana/example/misc/
H A Dinfinite_list.cpp58 static constexpr auto apply(Xs&& lcons, N const& n) { in apply()
59 return hana::drop_front(lcons, n).x; in apply()
66 constexpr auto operator()(Xs const& lcons) const { in operator ()()
67 return hana::eval(lcons.xs); in operator ()()
79 static constexpr auto apply(Xs&& lcons, N const&) { in apply()
80 return hana::iterate<N::value>(detail::eval_tail{}, lcons); in apply()
/dports/math/stanmath/math-4.2.0/stan/math/prim/fun/
H A Dlog_modified_bessel_first_kind.hpp200 T lcons = (2.0 + v) * log_half_z; in log_modified_bessel_first_kind() local
203 out = log_sum_exp(v * log_half_z - lgam, lcons - lgamma(v + 2)); in log_modified_bessel_first_kind()
206 out = lcons; in log_modified_bessel_first_kind()
215 lcons += 2 * log_half_z; in log_modified_bessel_first_kind()
217 out = log_sum_exp(out, lcons - lfac - lgam); // underflows eventually in log_modified_bessel_first_kind()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/stan/math/prim/scal/fun/
H A Dlog_modified_bessel_first_kind.hpp193 T lcons = (2.0 + v) * log_half_z; in log_modified_bessel_first_kind() local
196 out = log_sum_exp(v * log_half_z - lgam, lcons - lgamma(v + 2)); in log_modified_bessel_first_kind()
199 out = lcons; in log_modified_bessel_first_kind()
208 lcons += 2 * log_half_z; in log_modified_bessel_first_kind()
210 out = log_sum_exp(out, lcons - lfac - lgam); // underflows eventually in log_modified_bessel_first_kind()
/dports/lang/racket/racket-8.3/share/pkgs/drracket/scribblings/drracket/
H A Dextending.scrbl94 (provide (rename-out [:lcons lcons]) lcar lcdr)
96 (define-struct lcons (hd tl))
98 (define-syntax (:lcons stx)
101 (syntax (make-lcons
105 (define (lcar lcons) (force (lcons-hd lcons)))
106 (define (lcdr lcons) (force (lcons-tl lcons)))
113 (lcons
117 (define all-nums (lcons 1 (lmap add1 all-nums)))
/dports/math/vampire/vampire-4.5.1/Shell/
H A DConstraintReaderBack.cpp410 LinearConstraint* lcons = static_cast<LinearConstraint*>(citr->second); in constraints() local
411 std::vector<Variable*> variables(lcons->vars); in constraints()
412 std::vector<gmpRational> coef(lcons->coefs); in constraints()
426 switch(lcons->lintype) in constraints()
434 freeUp = -CoeffNumber((lcons->rhs.toDouble())); in constraints()
445 freeCoeff = CoeffNumber(lcons->lhs.toDouble()); in constraints()
458 freeUp = -CoeffNumber(lcons->rhs.toDouble()); in constraints()
462 freeCoeff = CoeffNumber(lcons->lhs.toDouble()); in constraints()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/vector_ar/tests/
H A Dsvar.do8 gen lcons = log(realcons)
12 gen cons = D.lcons
/dports/databases/pgpool-II-36/pgpool-II-3.6.28/src/include/parser/
H A Dpg_list.h135 #define list_make1(x1) lcons(x1, NIL)
136 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
137 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
138 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
139 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
198 extern List *lcons(void *datum, List *list);
/dports/databases/py-pglast/pglast-1.2/libpg_query/src/postgres/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql96-server/postgresql-9.6.24/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
202 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
202 extern List *lcons(void *datum, List *list);
/dports/databases/pgpool-II-37/pgpool-II-3.7.22/src/include/parser/
H A Dpg_list.h141 #define list_make1(x1) lcons(x1, NIL)
142 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
143 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
144 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
145 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
218 extern List *lcons(void *datum, List *list);
/dports/databases/pgpool-II-40/pgpool-II-4.0.17/src/include/parser/
H A Dpg_list.h141 #define list_make1(x1) lcons(x1, NIL)
142 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
143 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
144 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
145 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
218 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
202 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql11-client/postgresql-11.14/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-client/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-contrib/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-plpython/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-plperl/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql10-docs/postgresql-10.19/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql11-plperl/postgresql-11.14/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);
/dports/databases/postgresql11-docs/postgresql-11.14/src/include/nodes/
H A Dpg_list.h139 #define list_make1(x1) lcons(x1, NIL)
140 #define list_make2(x1,x2) lcons(x1, list_make1(x2))
141 #define list_make3(x1,x2,x3) lcons(x1, list_make2(x2, x3))
142 #define list_make4(x1,x2,x3,x4) lcons(x1, list_make3(x2, x3, x4))
143 #define list_make5(x1,x2,x3,x4,x5) lcons(x1, list_make4(x2, x3, x4, x5))
216 extern List *lcons(void *datum, List *list);

12345678910>>...66