Home
last modified time | relevance | path

Searched refs:fold (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/openbsd/src/gnu/usr.bin/perl/regen/
Dmk_PL_charclass.pl155 my $fold = hex $folded[$i];
156 if ($fold < 256) {
157 push @{$folded_closure{$fold}}, $from;
158 push @{$simple_folded_closure{$fold}}, $from if $fold_type ne 'F';
161 push @{$folded_closure{$from}}, $fold;
162 push @{$simple_folded_closure{$from}}, $fold if $fold_type ne 'F';
166 && ($fold < 256 != $from < 256))
172 push @non_latin1_simple_folds, ($fold < 256)
173 ? $fold
177 && $fold < 256
[all …]
Dregcharclass_multi_char_folds.pl120 my $fold = join "", map { chr $_ =~ /[[:print:]]/a
124 $fold = "\"$fold\"";
127 next if grep { $_ eq $fold } keys %output_folds;
Dmk_invlists.pl1063 foreach my $fold (keys %new) {
1064 my $folds_to_string = $fold =~ /\D/;
1068 if (scalar $new{$fold}->@* == 1) {
1069 $new{$fold} = $new{$fold}[0];
1076 $new{$new{$fold}} = $fold if $new{$fold} < 256 && $fold > 255;
1082 if (! $folds_to_string && $fold > 255) {
1083 foreach my $cp ($new{$fold}->@*) {
1085 my @new_entry = grep { $_ != $cp } $new{$fold}->@*;
1086 push @new_entry, $fold;
1103 @{$new{$fold}} = sort { $a <=> $b } $new{$fold}->@*
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dc-convert.c75 return fold (build1 (NOP_EXPR, type, expr));
92 return fold (convert_to_integer (type, e));
99 return fold (build1 (NOP_EXPR, type, TREE_OPERAND (t, 0)));
101 return fold (build1 (NOP_EXPR, type, t));
104 return fold (convert_to_pointer (type, e));
106 return fold (convert_to_real (type, e));
108 return fold (convert_to_complex (type, e));
110 return fold (convert_to_vector (type, e));
Dfold-const.c857 && 0 != (tem = fold (build1 (NEGATE_EXPR, type, t)))
869 fold (build (MINUS_EXPR, TREE_TYPE (t),
878 return convert (type, fold (build1 (NEGATE_EXPR, TREE_TYPE (t), t)));
1012 return fold (build (code, type, convert (type, t1), convert (type, t2)));
1466 return fold (build (code, type, arg0, arg1));
2148 return fold (build1 (code, type,
2153 return fold (build (code, type,
2169 return fold (build (code, type,
2200 return fold (build (code, type, arg0, arg1));
2407 return fold (build (TREE_CODE (arg0), type, common,
[all …]
Dconvert.c97 fold (build1 (REALPART_EXPR,
143 expr = fold (build1 (CONVERT_EXPR, (*lang_hooks.types.type_for_size)
358 fold (build (ex_form, typex,
392 fold (build1 (ex_form, typex,
412 return fold (build (COND_EXPR, type, TREE_OPERAND (expr, 0),
427 fold (build1 (REALPART_EXPR,
470 return fold (build (COMPLEX_EXPR,
478 fold (build (COMPLEX_EXPR,
480 fold (build1 (REALPART_EXPR,
484 fold (build1 (IMAGPART_EXPR,
Dbuiltins.c1731 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1791 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1838 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
1887 return expand_expr (fold (build (PLUS_EXPR, TREE_TYPE (s1),
2262 val = fold (build1 (CONVERT_EXPR, unsigned_char_type_node, val));
2410 fold (build1 (CONVERT_EXPR, integer_type_node,
2414 fold (build1 (CONVERT_EXPR, integer_type_node,
2417 tree result = fold (build (MINUS_EXPR, integer_type_node, ind1, ind2));
2537 fold (build1 (CONVERT_EXPR, integer_type_node,
2541 fold (build1 (CONVERT_EXPR, integer_type_node,
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Search-Dict/lib/Search/
DDict.pm60 my($fh,$key,$dict,$fold) = @_;
66 $fold = $params->{fold} if exists $params->{fold};
82 if ( $fold ) {
97 if ( $fold ) {
119 if ( $fold ) {
/openbsd/src/gnu/gcc/gcc/treelang/
Dtree-convert.c85 return fold (convert_to_integer (type, e)); in convert()
97 return fold (convert_to_pointer (type, e)); in convert()
99 return fold (convert_to_real (type, e)); in convert()
101 return fold (convert_to_complex (type, e)); in convert()
103 return fold (convert_to_vector (type, e)); in convert()
/openbsd/src/gnu/gcc/gcc/
Dc-convert.c102 return fold (convert_to_integer (type, e)); in convert()
106 return fold (convert_to_pointer (type, e)); in convert()
108 return fold (convert_to_real (type, e)); in convert()
110 return fold (convert_to_complex (type, e)); in convert()
112 return fold (convert_to_vector (type, e)); in convert()
Dconvert.c200 arglist = build_tree_list (NULL_TREE, fold (convert_to_real (newtype, arg0))); in convert_to_real()
243 fold (convert_to_real (type, arg)))); in convert_to_real()
258 fold (convert_to_real (type, in convert_to_real()
291 fold (convert_to_real (newtype, arg0)), in convert_to_real()
292 fold (convert_to_real (newtype, arg1))); in convert_to_real()
305 fold (convert_to_real (newtype, arg0)), in convert_to_real()
306 fold (convert_to_real (newtype, arg1))); in convert_to_real()
Dtree-ssa-threadedge.c303 cond = fold (cond); in record_temporary_equivalences_from_stmts_at_dest()
316 cached_lhs = fold (pre_fold_expr); in record_temporary_equivalences_from_stmts_at_dest()
431 cached_lhs = fold (COND_EXPR_COND (dummy_cond)); in simplify_control_stmt_condition()
/openbsd/src/regress/usr.bin/fold/
DMakefile3 REGRESS_TARGETS+= fold
4 fold: target
5 sh ${.CURDIR}/fold.sh
Dfold.sh17 FOLD=/usr/bin/fold
/openbsd/src/usr.bin/vis/
Dvis.c41 int eflags, fold, foldwidth=80, none, markeol; variable
95 fold = 1; /* fold output lines to 80 cols */ in main()
157 if (fold) { in process()
176 if (fold && *(cp-1) != '\n') in process()
/openbsd/src/gnu/usr.bin/perl/t/re/
Danyof.t814 for my $fold ("", "i") {
819 my $modifiers = $fold . $charset;
831 if ($fold) {
841 if (! $fold || scalar keys %list == 1) {
Dregex_sets.t86 my $fold = qr/(?[ $kelvin ])/i;
88 unlike("K", $fold, "/i on outer (?[ ]) doesn't leak to interpolated one");
89 unlike("k", $fold, "/i on outer (?[ ]) doesn't leak to interpolated one");
/openbsd/src/usr.bin/fold/
Dfold.c48 static void fold(unsigned int);
113 fold(width); in main()
119 fold(width); in main()
137 fold(unsigned int max_width) in fold() function
DMakefile3 PROG= fold
/openbsd/src/gnu/usr.bin/gcc/gcc/cp/
Dcvt.c653 return fold (convert_to_complex (type, e));
655 return fold (build1 (NOP_EXPR, type, e));
715 return fold (convert_to_integer (type, e));
719 return fold (cp_convert_to_pointer (type, e, 0));
721 return fold (convert_to_vector (type, e));
736 return fold (convert_to_real (type, e));
738 return fold (convert_to_complex (type, e));
958 return fold (build1 (NOP_EXPR, type, expr));
979 return fold (convert_to_reference (type, e, CONV_C_CAST, LOOKUP_COMPLAIN,
985 return fold (convert_to_pointer_force (type, e));
/openbsd/src/gnu/usr.bin/gcc/gcc/java/
Dtypeck.c133 return fold (convert_to_boolean (type, expr));
140 return fold (convert_ieee_real_to_integer (type, expr));
142 return fold (convert_to_integer (type, expr));
145 return fold (convert_to_real (type, expr));
147 return fold (convert_to_char (type, expr));
149 return fold (convert_to_pointer (type, expr));
Dexpr.c184 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
196 return fold (build (NE_EXPR, boolean_type_node, expr, boolean_false_node));
596 tree ret_label = fold (build1 (ADDR_EXPR, return_address_type_node, ret));
767 test = fold (build (GE_EXPR, boolean_type_node,
1061 load_node = fold (build1 (NOP_EXPR, int_type_node, load_node));
1330 res = fold (build (PLUS_EXPR, int_type_node, local_var, constant_value));
1403 arg2 = fold (build (BIT_AND_EXPR, int_type_node, arg2, mask));
1410 tree ifexp1 = fold ( build (op == COMPARE_L_EXPR ? GT_EXPR : LT_EXPR,
1412 tree ifexp2 = fold ( build (EQ_EXPR, boolean_type_node, arg1, arg2));
1413 tree second_compare = fold (build (COND_EXPR, int_type_node,
[all …]
/openbsd/src/usr.bin/spell/
Dspellprog.c245 int ch, fold, i; in main() local
322 fold = 0; in main()
328 ++fold; in main()
336 if (fold) in main()
/openbsd/src/gnu/usr.bin/perl/
Dmakedef.pl38 my $fold;
57 ++$fold;
1234 my @symbols = $fold ? sort {lc $a cmp lc $b} keys %export : sort keys %export;
/openbsd/src/regress/usr.bin/
DMakefile7 SUBDIR+= file fmt fold

12345678910>>...12