Searched refs:lambda (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__random/
H A Dexponential_distribution.h46 _LIBCPP_HIDE_FROM_ABI result_type lambda() const { return __lambda_; } function in class:exponential_distribution::param_type
77 _LIBCPP_HIDE_FROM_ABI result_type lambda() const { return __p_.lambda(); } function in class:exponential_distribution
100 __p.lambda();
109 return __os << __x.lambda();
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp80 // Call ::open in a lambda to avoid overload resolution in RetryAfterSignal
82 auto lambda = [&]() { return ::open(path, flags, mode); }; local
83 return llvm::sys::RetryAfterSignal(-1, lambda);
/freebsd-current/usr.bin/calendar/
H A Dsunpos.c103 double ZJ, D, T, M, epsilon, lambda, alpha, HA, UTHM; local
120 lambda = *L + (1.919 - 0.005 * T) * SIN(M) + 0.020 * SIN(2 * M);/* 8 */
121 fixup(&lambda);
122 alpha = ATAN(TAN(lambda) * COS(epsilon)); /* 9 */
126 int lssign = sin(D2R(lambda)) < 0 ? -1 : 1;
127 int lcsign = cos(D2R(lambda)) < 0 ? -1 : 1;
134 *DEC = ASIN(SIN(lambda) * SIN(epsilon)); /* 10 */
173 comp("lambda", lambda, fixup(&explambda));
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompileUnit.h155 /// Apply a lambda to each function in this compile unit.
162 /// \param[in] lambda
163 /// The lambda that should be applied to every function. The lambda can
166 llvm::function_ref<bool(const lldb::FunctionSP &)> lambda) const;
252 /// Apply a lambda to each external lldb::Module referenced by this
260 /// \param[in] lambda
261 /// The lambda that should be applied to every function. The lambda can
265 /// If the lambda earl
[all...]
H A DSymbolFile.h167 /// Apply a lambda to each external lldb::Module referenced by this
182 /// \param[in] lambda
183 /// The lambda that should be applied to every function. The lambda can
191 /// If the lambda early-exited, this function returns true to
196 llvm::function_ref<bool(Module &)> lambda) {
193 ForEachExternalModule( lldb_private::CompileUnit &comp_unit, llvm::DenseSet<lldb_private::SymbolFile *> &visited_symbol_files, llvm::function_ref<bool(Module &)> lambda) argument
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp47 llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda) {
48 lambda("all", "all available logging categories");
49 lambda("default", "default set of logging categories");
51 lambda(category.name, category.description);
288 llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda) {
293 ForEachCategory(*ch, lambda);
45 ForEachCategory( const Log::ChannelMap::value_type &entry, llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda) argument
286 ForEachChannelCategory( llvm::StringRef channel, llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda) argument
/freebsd-current/contrib/tcsh/
H A Dcsh-mode.el53 '(lambda ()
721 (function (lambda ()
797 (function (lambda (sym)
812 (function (lambda (sym)
818 (function (lambda (sym) t))))))
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DCompileUnit.cpp66 llvm::function_ref<bool(const FunctionSP &)> lambda) const {
77 if (lambda(f))
408 llvm::function_ref<bool(Module &)> lambda) {
410 return symfile->ForEachExternalModule(*this, visited_symbol_files, lambda);
406 ForEachExternalModule( llvm::DenseSet<SymbolFile *> &visited_symbol_files, llvm::function_ref<bool(Module &)> lambda) argument
H A DSymbolFileOnDemand.cpp106 llvm::function_ref<bool(Module &)> lambda) {
114 lambda);
103 ForEachExternalModule( CompileUnit &comp_unit, llvm::DenseSet<lldb_private::SymbolFile *> &visited_symbol_files, llvm::function_ref<bool(Module &)> lambda) argument
/freebsd-current/crypto/openssl/crypto/ec/
H A Dec_mult.c153 BIGNUM *lambda = NULL; local
195 lambda = BN_CTX_get(ctx);
216 || (bn_wexpand(lambda, group_top + 2) == NULL)) {
239 if (!BN_add(lambda, k, cardinality)) {
243 BN_set_flags(lambda, BN_FLG_CONSTTIME);
244 if (!BN_add(k, lambda, cardinality)) {
249 * lambda := scalar + cardinality
252 kbit = BN_is_bit_set(lambda, cardinality_bits);
253 BN_consttime_swap(kbit, k, lambda, group_top + 2);
H A Decp_smpl.c1426 * (X, Y ,Z ) = (lambda^2*X, lambda^3*Y, lambda*Z)
1427 * lambda = [1,group->field)
1434 BIGNUM *lambda = NULL; local
1438 lambda = BN_CTX_get(ctx);
1446 * Make sure lambda is not zero.
1452 ret = BN_priv_rand_range_ex(lambda, group->field, 0, ctx);
1458 } while (BN_is_zero(lambda));
1462 && !group->meth->field_encode(group, lambda, lambd
[all...]
/freebsd-current/sys/contrib/openzfs/cmd/
H A Darcstat.in332 fmt = lambda col: prettynum(cols[col][0], cols[col][1], v[col])
334 fmt = lambda col: str(v[col])
347 fmt = lambda col: "%*s" % (cols[col][0], col)
349 fmt = lambda col: col
H A Darc_summary102 fmt = lambda kstat: '{name} : {value}'.format(name=namefmt(kstat, base),
/freebsd-current/contrib/wpa/src/common/
H A Dsae.h76 size_t lambda; member in struct:sae_temporary_data
H A Dsae_pk.c383 tmp->lambda = len - len / 5;
384 tmp->fingerprint_bits = 8 * tmp->sec + 19 * tmp->lambda / 4 - 5;
386 tmp->sec, tmp->lambda, tmp->fingerprint_bits);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h199 /// Calls the given lambda for every category in the given channel.
200 /// If no channel with the given name exists, lambda is never called.
203 llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda);
295 llvm::function_ref<void(llvm::StringRef, llvm::StringRef)> lambda);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc227 // Call ::open in a lambda to avoid overload resolution in
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp70 /// A lambda is represented by Clang as an artifical class whose
71 /// members are the lambda captures. If we capture a 'this' pointer,
819 // We're inside a lambda and we captured a 'this'.
821 // (unnamed) lambda structure AST so unqualified
824 // If we're in a lambda which didn't capture 'this',
825 // $__lldb_class will correspond to the lambda closure
1103 // a lambda, we count the lambda captures as local variables. Thus,
1108 if (auto lambda = ClangExpressionUtil::GetLambdaValueObject(frame)) {
1109 if (auto capture = lambda
[all...]
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp7283 // sets lambda to be used in fun *and* executes benchmark!
9086 static auto invoke( L const &lambda, ArgType const &arg ) -> ParserResult {
9087 return lambda( arg );
9094 static auto invoke( L const &lambda, ArgType const &arg ) -> ParserResult {
9095 lambda( arg );
9101 inline auto invokeLambda( L const &lambda, std::string const &arg ) -> ParserResult {
9106 : LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( lambda, temp );
9113 static_assert( UnaryLambdaTraits<L>::isValid, "Supplied lambda must take exactly one argument" );
9114 explicit BoundLambda( L const &lambda ) : m_lambda( lambda ) {}
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1046 llvm::function_ref<bool(Module &)> lambda) {
1058 if (lambda(*module))
1063 bool early_exit = cu->ForEachExternalModule(visited_symbol_files, lambda);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp2187 FLAG(isLambda, lambda);
/freebsd-current/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in379 key=lambda x: x[0])

Completed in 503 milliseconds