Home
last modified time | relevance | path

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

12

/freebsd-12.1/usr.bin/calendar/
H A Dsunpos.c105 double ZJ, D, T, M, epsilon, lambda, alpha, HA, UTHM; in sunpos() local
122 lambda = *L + (1.919 - 0.005 * T) * SIN(M) + 0.020 * SIN(2 * M);/* 8 */ in sunpos()
123 fixup(&lambda); in sunpos()
124 alpha = ATAN(TAN(lambda) * COS(epsilon)); /* 9 */ in sunpos()
128 int lssign = sin(D2R(lambda)) < 0 ? -1 : 1; in sunpos()
129 int lcsign = cos(D2R(lambda)) < 0 ? -1 : 1; in sunpos()
136 *DEC = ASIN(SIN(lambda) * SIN(epsilon)); /* 10 */ in sunpos()
175 comp("lambda", lambda, fixup(&explambda)); in sunpos()
/freebsd-12.1/crypto/openssl/crypto/ec/
H A Dec_mult.c147 BIGNUM *lambda = NULL; in ec_scalar_mul_ladder() local
189 lambda = BN_CTX_get(ctx); in ec_scalar_mul_ladder()
210 || (bn_wexpand(lambda, group_top + 2) == NULL)) { in ec_scalar_mul_ladder()
233 if (!BN_add(lambda, k, cardinality)) { in ec_scalar_mul_ladder()
237 BN_set_flags(lambda, BN_FLG_CONSTTIME); in ec_scalar_mul_ladder()
238 if (!BN_add(k, lambda, cardinality)) { in ec_scalar_mul_ladder()
246 kbit = BN_is_bit_set(lambda, cardinality_bits); in ec_scalar_mul_ladder()
247 BN_consttime_swap(kbit, k, lambda, group_top + 2); in ec_scalar_mul_ladder()
H A Decp_smpl.c1426 BIGNUM *lambda = NULL; in ec_GFp_simple_blind_coordinates() local
1430 lambda = BN_CTX_get(ctx); in ec_GFp_simple_blind_coordinates()
1439 if (!BN_priv_rand_range(lambda, group->field)) { in ec_GFp_simple_blind_coordinates()
1443 } while (BN_is_zero(lambda)); in ec_GFp_simple_blind_coordinates()
1447 && !group->meth->field_encode(group, lambda, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1449 if (!group->meth->field_mul(group, p->Z, p->Z, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1451 if (!group->meth->field_sqr(group, temp, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
1455 if (!group->meth->field_mul(group, temp, temp, lambda, ctx)) in ec_GFp_simple_blind_coordinates()
/freebsd-12.1/contrib/tcsh/
H A Dcsh-mode.el53 '(lambda ()
797 (function (lambda (sym)
812 (function (lambda (sym)
818 (function (lambda (sym) t))))))
/freebsd-12.1/gnu/usr.bin/cc/cc_int/
H A DMakefile62 tree-profile.o rtlhooks.o cfgexpand.o lambda-mat.o \
63 lambda-trans.o lambda-code.o tree-loop-linear.o tree-ssa-sink.o \
/freebsd-12.1/contrib/googletest/googlemock/docs/
H A DDesignDoc.md226 known as lambda expressions or anonymous functions). Indeed, both of
236 …* They will become obsolete when C++0x's lambda feature is widely supported. We don't want to mak…
237 …ey are rather ad hoc: you cannot use statements, and you cannot pass the lambda arguments to a fun…
257 C++0x will also support lambda expressions. When they become
/freebsd-12.1/contrib/ntp/sntp/ag-tpl/0-old/
H A Dperlopt.tpl27 (define q (lambda (s) (string-append "'" s "'")))
28 (define qp (lambda (s) (string-append "q{" s "}")))
H A Dagmdoc-cmd.tpl33 (define head-line (lambda() (string-append
H A Dagman-cmd.tpl33 (define head-line (lambda()
H A Dcmd-doc.tlib90 (define name-to-fname (lambda (nm)
93 (define sect-line-fname (lambda () (begin
446 (define fix-optname (lambda (o_nm) (begin
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp70 llvm::function_ref<bool(const FunctionSP &)> lambda) const { in ForeachFunction()
81 if (lambda(f)) in ForeachFunction()
/freebsd-12.1/contrib/binutils/
H A DMakefile.tpl1448 (define dep-target (lambda (module-kind var-name hard)
1457 (define make-dep (lambda (module-kind on-kind)
1464 (define dep-subtarget (lambda (var-name)
1469 (define dep-module (lambda (var-name)
1473 (define dep-stage (lambda () function
1481 (define dep-maybe (lambda () function
1490 (define dep-kind (lambda () function
1537 (define lang-dep (lambda (lang)
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompileUnit.h180 llvm::function_ref<bool(const lldb::FunctionSP &)> lambda) const;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticParseKinds.td857 // C++11 lambda expressions
859 "expected ',' or ']' in lambda capture list">;
863 "expected variable name or 'this' in lambda capture list">;
864 def err_expected_lambda_body : Error<"expected body of lambda expression">;
866 "lambda expressions are incompatible with C++98">,
869 "lambda requires '()' before %select{'mutable'|return type|"
873 // C++17 lambda expressions
875 "expected 'this' following '*' in lambda capture list">;
877 // C++17 constexpr lambda expressions
879 "constexpr on lambda expressions is incompatible with C++ standards before C++17">,
[all …]
H A DDiagnosticSemaKinds.td786 "use of '__super' inside a lambda is unsupported">;
2817 "lambda cannot be declared %0">;
5296 "%select{block|lambda by copy}0">;
6545 "a lambda expression">;
6551 "lambda expression in an unevaluated operand">;
6563 "lambda declared 'noreturn' should not return">;
6565 "control may reach end of non-void lambda">,
6568 "control reaches end of non-void lambda">,
6582 // C++14 lambda init-captures.
6589 "initializer missing for lambda capture %0">;
[all …]
H A DDiagnosticASTKinds.td198 "unimplemented constexpr lambda feature: %0 (coming soon!)">;
/freebsd-12.1/contrib/libstdc++/include/tr1/
H A Drandom2101 * @f$ p(x) = \lambda e^{-\lambda x} @f$.
2105 * <tr><td>Mean</td><td>@f$ \frac{1}{\lambda} @f$</td></tr>
2106 * <tr><td>Median</td><td>@f$ \frac{\ln 2}{\lambda} @f$</td></tr>
2109 * <tr><td>Standard Deviation</td><td>@f$ \frac{1}{\lambda} @f$</td></tr>
2123 * @f$ \lambda @f$.
2136 lambda() const
2361 // Hosts either lambda of GB or d of modified Vaduva's.
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentHTMLNamedCharacterReferences.td130 def : NCR<"lambda", 0x003BB>;
H A DOperationKinds.def322 /// lambda expression to a block pointer.
/freebsd-12.1/usr.bin/vgrind/
H A Dvgrindefs.src92 lambda lastchild le leftsibling lookone lookup lt minus name ne\
/freebsd-12.1/contrib/gcc/
H A DMakefile.in814 LAMBDA_H = lambda.h $(TREE_H) vec.h $(GGC_H)
1019 tree-profile.o rtlhooks.o cfgexpand.o lambda-mat.o \
1020 lambda-trans.o lambda-code.o tree-loop-linear.o tree-ssa-sink.o \
/freebsd-12.1/contrib/llvm/lib/Support/Unix/
H A DProcess.inc214 // Call ::open in a lambda to avoid overload resolution in
/freebsd-12.1/contrib/serf/
H A DSConstruct52 return (key, '%s' % (help), default, None, lambda val: _converter(val))
/freebsd-12.1/contrib/libc++/include/
H A Drandom850 explicit param_type(result_type lambda = 1.0);
852 result_type lambda() const;
859 explicit exponential_distribution(result_type lambda = 1.0);
868 result_type lambda() const;
4122 result_type lambda() const {return __lambda_;}
4154 result_type lambda() const {return __p_.lambda();}
4187 / __p.lambda();
4198 return __os << __x.lambda();
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTDumper.cpp851 FLAG(isLambda, lambda); in VisitCXXRecordDecl()

12