Home
last modified time | relevance | path

Searched refs:lambda (Results 1 – 25 of 32) sorted by relevance

12

/dflybsd-src/usr.bin/calendar/
H A Dsun.c161 double lambda = (282.7771834 + 36000.76953744 * c + in solar_longitude() local
167 return mod_f(lambda + ab + nu, 360); in solar_longitude()
176 solar_longitude_atafter(double lambda, double t) in solar_longitude_atafter() argument
180 double tau = t + rate * mod_f(lambda - lon, 360); in solar_longitude_atafter()
186 return invert_angular(solar_longitude, lambda, a, b); in solar_longitude_atafter()
195 estimate_prior_solar_longitude(double lambda, double t) in estimate_prior_solar_longitude() argument
201 double tau = t - rate * mod_f(lon - lambda, 360); in estimate_prior_solar_longitude()
205 double delta = mod3_f(lon - lambda, -180, 180); in estimate_prior_solar_longitude()
219 double lambda = solar_longitude(t); in solar_altitude() local
220 double alpha = right_ascension(t, 0, lambda); in solar_altitude()
[all …]
H A Dbasics.c236 double lambda = 280.46645 + 36000.76983 * c + 0.0003032 * c*c; in equation_of_time() local
242 double equation = (y * sin_deg(2*lambda) - in equation_of_time()
244 4 * eccentricity * y * sin_deg(anomaly) * cos_deg(2*lambda) - in equation_of_time()
246 0.5 * y*y * sin_deg(4*lambda)) / (2*M_PI); in equation_of_time()
303 declination(double t, double beta, double lambda) in declination() argument
307 cos_deg(beta) * sin_deg(epsilon) * sin_deg(lambda)); in declination()
316 right_ascension(double t, double beta, double lambda) in right_ascension() argument
319 double x = cos_deg(lambda); in right_ascension()
320 double y = (sin_deg(lambda) * cos_deg(epsilon) - in right_ascension()
H A Dchinese.c318 double lambda = 15.0; /* Solar longitude of Qīngmíng */ in chinese_qingming() local
322 double t = solar_longitude_atafter(lambda, rd) + zone; in chinese_qingming()
551 int lambda; in show_chinese_calendar() local
562 lambda = jq->longitude; in show_chinese_calendar()
563 t_jq = solar_longitude_atafter(lambda, floor(t_jq)) + zone; in show_chinese_calendar()
568 jq->zhname, jq->name, lambda, in show_chinese_calendar()
H A Dsun.h47 double estimate_prior_solar_longitude(double lambda, double t);
49 double solar_longitude_atafter(double lambda, double t);
H A Dbasics.h92 double declination(double t, double beta, double lambda);
93 double right_ascension(double t, double beta, double lambda);
H A Dmoon.c579 double lambda = lunar_longitude(t); in lunar_altitude() local
581 double alpha = right_ascension(t, beta, lambda); in lunar_altitude()
582 double delta = declination(t, beta, lambda); in lunar_altitude()
/dflybsd-src/contrib/gcc-8.0/gcc/cp/
H A Dlambda.c39 tree lambda = make_node (LAMBDA_EXPR); in build_lambda_expr() local
40 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; in build_lambda_expr()
41 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; in build_lambda_expr()
42 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; in build_lambda_expr()
43 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; in build_lambda_expr()
44 LAMBDA_EXPR_MUTABLE_P (lambda) = false; in build_lambda_expr()
45 return lambda; in build_lambda_expr()
129 begin_lambda_type (tree lambda) in begin_lambda_type() argument
152 LAMBDA_EXPR_CLOSURE (lambda) = type; in begin_lambda_type()
153 CLASSTYPE_LAMBDA_EXPR (type) = lambda; in begin_lambda_type()
[all …]
H A Dcp-tree.def464 /* A lambda expression. This is a C++0x extension.
470 be pushed once scope returns to the lambda.
471 LAMBDA_EXPR_MUTABLE_P signals whether this lambda was declared mutable. */
479 DECLTYPE_FOR_LAMBDA_CAPTURE is set if we want lambda capture semantics.
480 DECLTYPE_FOR_LAMBDA_RETURN is set if we want lambda return deduction. */
H A Dmangle.c1663 tree lambda = CLASSTYPE_LAMBDA_EXPR (type); in write_closure_type_name() local
1671 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda)); in write_closure_type_name()
/dflybsd-src/crypto/libressl/crypto/ec/
H A Decp_smpl.c1426 BIGNUM *lambda = NULL; in ec_GFp_simple_blind_coordinates() local
1431 if ((lambda = BN_CTX_get(ctx)) == NULL) in ec_GFp_simple_blind_coordinates()
1437 if (!bn_rand_interval(lambda, BN_value_one(), &group->field)) in ec_GFp_simple_blind_coordinates()
1441 !group->meth->field_encode(group, lambda, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1445 if (!group->meth->field_mul(group, &p->Z, lambda, &p->Z, ctx)) in ec_GFp_simple_blind_coordinates()
1449 if (!group->meth->field_sqr(group, tmp, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1457 if (!group->meth->field_mul(group, tmp, tmp, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1519 BIGNUM *lambda = NULL; in ec_GFp_simple_mul_ct() local
1544 if ((lambda = BN_CTX_get(ctx)) == NULL) in ec_GFp_simple_mul_ct()
1560 (bn_wexpand(lambda, group_top + 2) == NULL)) in ec_GFp_simple_mul_ct()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dsemantics.c8647 tree lambda = make_node (LAMBDA_EXPR); in build_lambda_expr() local
8648 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; in build_lambda_expr()
8649 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; in build_lambda_expr()
8650 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; in build_lambda_expr()
8651 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; in build_lambda_expr()
8652 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE; in build_lambda_expr()
8653 LAMBDA_EXPR_MUTABLE_P (lambda) = false; in build_lambda_expr()
8654 return lambda; in build_lambda_expr()
8733 begin_lambda_type (tree lambda) in begin_lambda_type() argument
8762 LAMBDA_EXPR_CLOSURE (lambda) = type; in begin_lambda_type()
[all …]
H A Dcp-tree.def442 /* A lambda expression. This is a C++0x extension.
448 be pushed once scope returns to the lambda.
449 LAMBDA_EXPR_MUTABLE_P signals whether this lambda was declared mutable.
458 DECLTYPE_FOR_LAMBDA_CAPTURE is set if we want lambda capture semantics.
459 DECLTYPE_FOR_LAMBDA_RETURN is set if we want lambda return deduction. */
H A Dmangle.c1368 tree lambda = CLASSTYPE_LAMBDA_EXPR (type); in write_closure_type_name() local
1376 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda)); in write_closure_type_name()
H A Dtypeck.c7786 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type); in check_return_expr() local
7787 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda)) in check_return_expr()
7790 tree oldtype = LAMBDA_EXPR_RETURN_TYPE (lambda); in check_return_expr()
7793 apply_lambda_return_type (lambda, type); in check_return_expr()
7799 apply_lambda_return_type (lambda, type); in check_return_expr()
/dflybsd-src/contrib/tcsh-6/
H A Dcsh-mode.el53 '(lambda ()
797 (function (lambda (sym)
812 (function (lambda (sym)
818 (function (lambda (sym) t))))))
/dflybsd-src/gnu/usr.bin/cc80/
H A DMakefile.langs145 $(srcdir)/cp/lambda.c \
209 cp/lambda.o cp/lex.o \
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Drandom1655 * p(x|\lambda, \mu, \nu) = \frac{2}{x}
1656 * \left(\frac{\lambda\nu x}{\mu}\right)^{\frac{\lambda + \nu}{2}}
1657 * \frac{1}{\Gamma(\lambda)\Gamma(\nu)}
1658 * K_{\nu - \lambda}\left(2\sqrt{\frac{\lambda\nu x}{\mu}}\right)
1661 * of order @f$\nu - \lambda@f$ and @f$\lambda > 0@f$, @f$\mu > 0@f$
1667 * <tr><td>Variance</td><td>@f$\mu^2\frac{\lambda + \nu + 1}{\lambda\nu}@f$</td></tr>
1698 lambda() const
1744 _M_gd1(__p.lambda(), result_type(1) / __p.lambda()),
1762 lambda() const
1763 { return _M_param.lambda(); }
H A Drandom.tcc944 __p1(__p.lambda(), result_type(1) / __p.lambda()), in operator ()()
964 __p1(__p.lambda(), result_type(1) / __p.lambda()), in __generate_impl()
990 __os << __x.lambda() << __space << __x.mu() << __space << __x.nu(); in operator <<()
/dflybsd-src/gnu/usr.bin/cc80/support-libs/liblto_plugin/
H A Db-header-vars89lambda.h gt-cp-lex.h gt-cp-mangle.h gt-cp-method.h gt-cp-name-lookup.h gt-cp-parser.h gt-cp-pt.h g…
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Drandom.h4162 lambda() const in _GLIBCXX_VISIBILITY()
4200 lambda() const in _GLIBCXX_VISIBILITY()
4201 { return _M_param.lambda(); } in _GLIBCXX_VISIBILITY()
4247 return -std::log(result_type(1) - __aurng()) / __p.lambda(); in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Drandom.h4573 lambda() const in _GLIBCXX_VISIBILITY()
4615 lambda() const in _GLIBCXX_VISIBILITY()
4616 { return _M_param.lambda(); } in _GLIBCXX_VISIBILITY()
4662 return -std::log(result_type(1) - __aurng()) / __p.lambda(); in _GLIBCXX_VISIBILITY()
H A Drandom.tcc1729 *__f++ = -std::log(result_type(1) - __aurng()) / __p.lambda(); in __generate_impl()
1747 __os << __x.lambda(); in operator <<()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Drandom.h2181 lambda() const in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Drandom.h2177 lambda() const in _GLIBCXX_VISIBILITY()
H A Drandom.tcc1509 __os << __x.lambda(); in operator <<()

12