/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | lambda.c | 40 tree lambda = make_node (LAMBDA_EXPR); in build_lambda_expr() local 41 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; in build_lambda_expr() 42 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; in build_lambda_expr() 43 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; in build_lambda_expr() 44 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; in build_lambda_expr() 45 LAMBDA_EXPR_MUTABLE_P (lambda) = false; in build_lambda_expr() 46 return lambda; in build_lambda_expr() 130 begin_lambda_type (tree lambda) in begin_lambda_type() argument 146 LAMBDA_EXPR_CLOSURE (lambda) = type; in begin_lambda_type() 147 CLASSTYPE_LAMBDA_EXPR (type) = lambda; in begin_lambda_type() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | lambda.cc | 41 tree lambda = make_node (LAMBDA_EXPR); in build_lambda_expr() local 42 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE; in build_lambda_expr() 43 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE; in build_lambda_expr() 44 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE; in build_lambda_expr() 45 LAMBDA_EXPR_REGEN_INFO (lambda) = NULL_TREE; in build_lambda_expr() 46 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL; in build_lambda_expr() 47 LAMBDA_EXPR_MUTABLE_P (lambda) = false; in build_lambda_expr() 48 return lambda; in build_lambda_expr() 131 begin_lambda_type (tree lambda) in begin_lambda_type() argument 146 LAMBDA_EXPR_CLOSURE (lambda) = type; in begin_lambda_type() [all …]
|
H A D | ChangeLog-2018 | 826 (tsubst_function_decl): Substitute a lambda even if it isn't 850 Implement P0780R2, pack expansion in lambda init-capture. 1084 PR c++/60503 - wrong lambda attribute syntax. 1146 * lambda.c (is_capture_proxy): Use DECL_FNAME_P. 1645 * lambda.c (prune_lambda_captures): Protect against const_vars.get 1798 lambda has a capture-default. 1940 * lambda.c (add_default_capture): Formatting fixes. Warn about 1948 PR c++/86728 - C variadic generic lambda. 2104 * lambda.c (maybe_add_lambda_conv_op): Use fun_identifier instead of 2181 PR c++/86480 - nested variadic lambda and constexpr if. [all …]
|
H A D | ChangeLog-2017 | 333 * lambda.c (nonlambda_method_basetype): Don't use LAMBDA_TYPE_P 386 * lambda.c (cp-cilkplus.h): Remove. 641 * decl.c (xref_tag_1): Push lambda into current scope. 647 * lambda.c (lambda_capture_field_type): Function references are 677 * lambda.c (need_generic_capture, dependent_capture_r) 691 * call.c, class.c, cp-ubsan.c, decl.c, except.c, init.c, lambda.c, 946 * lambda.c (lambda_function): Use call_op_identifier. 1151 More delayed lambda capture fixes. 1161 * lambda.c (insert_capture_proxy): Add some sanity checking. 1170 Handle generic lambda capture in dependent expressions. [all …]
|
/netbsd-src/external/gpl2/groff/dist/src/preproc/pic/ |
H A D | common.cpp | 137 double lambda = (dim.x - dim.y) / (dim.x + dim.y); in dashed_ellipse() local 139 * ((64 - 3 * lambda * lambda * lambda * lambda ) in dashed_ellipse() 140 / (64 - 16 * lambda * lambda)); in dashed_ellipse() 195 double lambda = (dim.x - dim.y) / (dim.x + dim.y); in dotted_ellipse() local 197 * ((64 - 3 * lambda * lambda * lambda * lambda ) in dotted_ellipse() 198 / (64 - 16 * lambda * lambda)); in dotted_ellipse()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-guile/ |
H A D | hello.scm | 11 (catch #t (lambda () (setlocale LC_ALL "")) (lambda args #f))
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/ |
H A D | ec_mult.c | 153 BIGNUM *lambda = NULL; in ossl_ec_scalar_mul_ladder() local 195 lambda = BN_CTX_get(ctx); in ossl_ec_scalar_mul_ladder() 216 || (bn_wexpand(lambda, group_top + 2) == NULL)) { in ossl_ec_scalar_mul_ladder() 239 if (!BN_add(lambda, k, cardinality)) { in ossl_ec_scalar_mul_ladder() 243 BN_set_flags(lambda, BN_FLG_CONSTTIME); in ossl_ec_scalar_mul_ladder() 244 if (!BN_add(k, lambda, cardinality)) { in ossl_ec_scalar_mul_ladder() 252 kbit = BN_is_bit_set(lambda, cardinality_bits); in ossl_ec_scalar_mul_ladder() 253 BN_consttime_swap(kbit, k, lambda, group_top + 2); in ossl_ec_scalar_mul_ladder()
|
H A D | ecp_smpl.c | 1434 BIGNUM *lambda = NULL; in ossl_ec_GFp_simple_blind_coordinates() local 1438 lambda = BN_CTX_get(ctx); in ossl_ec_GFp_simple_blind_coordinates() 1452 ret = BN_priv_rand_range_ex(lambda, group->field, 0, ctx); in ossl_ec_GFp_simple_blind_coordinates() 1458 } while (BN_is_zero(lambda)); in ossl_ec_GFp_simple_blind_coordinates() 1462 && !group->meth->field_encode(group, lambda, lambda, ctx)) in ossl_ec_GFp_simple_blind_coordinates() 1463 || !group->meth->field_mul(group, p->Z, p->Z, lambda, ctx) in ossl_ec_GFp_simple_blind_coordinates() 1464 || !group->meth->field_sqr(group, temp, lambda, ctx) in ossl_ec_GFp_simple_blind_coordinates() 1466 || !group->meth->field_mul(group, temp, temp, lambda, ctx) in ossl_ec_GFp_simple_blind_coordinates()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/ |
H A D | ec_mult.c | 147 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 D | ecp_smpl.c | 1427 BIGNUM *lambda = NULL; in ec_GFp_simple_blind_coordinates() local 1431 lambda = BN_CTX_get(ctx); in ec_GFp_simple_blind_coordinates() 1445 ret = BN_priv_rand_range(lambda, group->field); in ec_GFp_simple_blind_coordinates() 1451 } while (BN_is_zero(lambda)); in ec_GFp_simple_blind_coordinates() 1455 && !group->meth->field_encode(group, lambda, lambda, ctx)) in ec_GFp_simple_blind_coordinates() 1456 || !group->meth->field_mul(group, p->Z, p->Z, lambda, ctx) in ec_GFp_simple_blind_coordinates() 1457 || !group->meth->field_sqr(group, temp, lambda, ctx) in ec_GFp_simple_blind_coordinates() 1459 || !group->meth->field_mul(group, temp, temp, lambda, ctx) in ec_GFp_simple_blind_coordinates()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format/ |
H A D | clang-format.el | 101 (lambda (a b) 125 (lambda (position &optional _quality _coding-system) 131 (lambda (byte &optional _quality _coding-system)
|
H A D | clang-format-test.el | 28 (lambda (&rest args) 82 (lambda (&rest args)
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libuniname/ |
H A D | gen-uninames | 220 (lambda (vec1 vec2) 243 (maplist (lambda (r) (+ (* 2 (car r)) (if (cdr r) 1 0))) 284 … (reduce #'max (mapcar (lambda (uc) (length (unicode-char-name uc))) all-chars))
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | numeric.d | 2186 F gapWeightedSimilarity(alias comp = "a == b", R1, R2, F)(R1 s, R2 t, F lambda) 2195 if (s.length < t.length) return gapWeightedSimilarity(t, s, lambda); 2206 immutable lambda2 = lambda * lambda; 2226 dpvi1[j1] = dpsij + lambda * (dpvi1[j] + dpvi[j1]) - 2267 (R1 s, R2 t, F lambda, F sSelfSim = F.init, F tSelfSim = F.init) 2279 sSelfSim = gapWeightedSimilarity!(comp)(s, s, lambda); 2282 tSelfSim = gapWeightedSimilarity!(comp)(t, t, lambda); 2285 return gapWeightedSimilarity!(comp)(s, t, lambda) / 2326 F lambda = void, lambda2 = void; member 2334 this(Range s, Range t, F lambda) in this() [all …]
|
/netbsd-src/external/bsd/unbound/dist/libunbound/python/ |
H A D | libunbound.i | 706 return ';'.join([' '.join(map(lambda x:"%02X" % ord(x),a)) for a in self.data]) 762 return ['.'.join(map(lambda x:str(ord(x)),a)) for a in self.data] 771 return map(lambda x:'.'.join(self.dname2str(x)), self.data) 780 …return map(lambda x: '.'.join([encodings.idna.ToUnicode(a) for a in self.dname2str(x)]), self.data)
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
H A D | msguniq-a.inp | 491 !FUNCTION\:\ lambda-list\ for\ ~\ is\ missing= 494 !FUNCTION\:\ lambda-list\ for\ ~\ should\ be\ a\ list,\ not\ ~= 524 !FUNCTION\:\ badly\ placed\ lambda-list\ keyword\ ~\:\ ~= 533 !FUNCTION\:\ too\ many\ parameters\ in\ the\ lambda-list\ ~= 536 !FUNCTION\:\ a\ dot\ in\ a\ lambda-list\ is\ allowed\ only\ for\ macros,\ not\ here\:\ ~= 2604 !~S\:\ ~S\ should\ be\ a\ lambda\ expression= 2607 !lambda\ list\ must\ not\ end\ with\ the\ atom\ ~S= 2658 !~S\:\ function\ ~S\ is\ missing\ a\ lambda\ list= 2685 !The\ rest\ of\ the\ lambda\ list\ will\ be\ ignored.= 2688 !The\ lambda\ list\ of\ macro\ ~S\ contains\ a\ dot\ after\ &AUX.= [all …]
|
H A D | msguniq-a.out | 733 msgid "FUNCTION: lambda-list for ~ is missing" 737 msgid "FUNCTION: lambda-list for ~ should be a list, not ~" 777 msgid "FUNCTION: badly placed lambda-list keyword ~: ~" 789 msgid "FUNCTION: too many parameters in the lambda-list ~" 793 msgid "FUNCTION: a dot in a lambda-list is allowed only for macros, not here: ~" 3558 msgid "~S: ~S should be a lambda expression" 3562 msgid "lambda list must not end with the atom ~S" 3630 msgid "~S: function ~S is missing a lambda list" 3666 msgid "The rest of the lambda list will be ignored." 3670 msgid "The lambda list of macro ~S contains a dot after &AUX." [all …]
|
H A D | msguniq-a.in | 769 msgid "FUNCTION: lambda-list for ~ is missing" 773 msgid "FUNCTION: lambda-list for ~ should be a list, not ~" 813 msgid "FUNCTION: badly placed lambda-list keyword ~: ~" 825 msgid "FUNCTION: too many parameters in the lambda-list ~" 829 msgid "FUNCTION: a dot in a lambda-list is allowed only for macros, not here: ~" 3866 msgid "~S: ~S should be a lambda expression" 3870 msgid "lambda list must not end with the atom ~S" 3942 msgid "~S: function ~S is missing a lambda list" 3978 msgid "The rest of the lambda list will be ignored." 3982 msgid "The lambda list of macro ~S contains a dot after &AUX." [all …]
|
/netbsd-src/external/gpl2/texinfo/dist/util/ |
H A D | texi-docstring-magic.el | 259 (argsyms (cond ((eq (car-safe def) 'lambda) 338 obarray '(lambda (sym)
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/emacs/ |
H A D | emacs.el | 29 (lambda nil
|
/netbsd-src/sbin/raidctl/ |
H A D | rf_configure.c | 372 int b, v, k, r, lambda, norotate, i, val, distSpare; in rf_MakeLayoutSpecificDeclustered() local 397 &b, &v, &k, &r, &lambda, &norotate); in rf_MakeLayoutSpecificDeclustered() 467 *((int *) p) = lambda; in rf_MakeLayoutSpecificDeclustered()
|
/netbsd-src/external/gpl2/groff/dist/font/devps/generate/ |
H A D | lgreekmap | 13 lambda *l
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-rename/ |
H A D | clang-rename.el | 69 (lambda (position &optional _quality _coding-system)
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | numeric.d | 2512 F gapWeightedSimilarity(alias comp = "a == b", R1, R2, F)(R1 s, R2 t, F lambda) 2521 if (s.length < t.length) return gapWeightedSimilarity(t, s, lambda); 2532 immutable lambda2 = lambda * lambda; 2552 dpvi1[j1] = dpsij + lambda * (dpvi1[j] + dpvi[j1]) - 2593 (R1 s, R2 t, F lambda, F sSelfSim = F.init, F tSelfSim = F.init) 2605 sSelfSim = gapWeightedSimilarity!(comp)(s, s, lambda); 2608 tSelfSim = gapWeightedSimilarity!(comp)(t, t, lambda); 2611 return gapWeightedSimilarity!(comp)(s, t, lambda) / 2653 F lambda = void, lambda2 = void; member 2661 this(Range s, Range t, F lambda) in this() [all …]
|
/netbsd-src/external/bsd/ntp/dist/sntp/ag-tpl/0-old/ |
H A D | perlopt.tpl | 27 (define q (lambda (s) (string-append "'" s "'"))) 28 (define qp (lambda (s) (string-append "q{" s "}")))
|