/openbsd/gnu/usr.bin/perl/regen/ |
H A D | mk_PL_charclass.pl | 144 my ($hex_from, $fold_type, @folded) = split /[\s;]+/, $line; 154 for my $i (0 .. @folded - 1) { 155 my $fold = hex $folded[$i]; 176 elsif ($i < @folded-1 192 foreach my $folded (keys %folded_closure) { 194 push @{$folded_closure{$from}}, @{$folded_closure{$folded}}; 197 foreach my $folded (keys %simple_folded_closure) { 205 foreach my $folded (@non_latin1_simple_folds) { 206 foreach my $fold (@{$simple_folded_closure{$folded}}) { 223 foreach my $folded (keys %folded_closure) { [all …]
|
H A D | regcomp.pl | 282 my @folded; 294 $folded[$index] = $name =~ /^EXACTF/ || 0; 298 die "Can't cope with > 32 EXACTish nodes" if @folded > 32; 300 my $exactf = sprintf "%X", oct("0b" . join "", reverse @folded);
|
H A D | regcharclass.pl | 1859 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character 1863 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character 1899 PROBLEMATIC_LOCALE_FOLDEDS_START : The first folded character of folds which are problematic under …
|
/openbsd/gnu/usr.bin/perl/t/re/ |
H A D | reg_fold.t | 59 my ($cp,$type,@folded)=split/[\s;]+/,$line||''; 61 my $fold_above_latin1 = grep { hex("0x$_") > 255 } @folded; 62 $_="\\x{$_}" for @folded; 71 $lhs = join "", @folded; 78 foreach my $rhs_char (@folded) { 101 if (! $swap && $charclass && @folded > 1)
|
/openbsd/gnu/usr.bin/perl/ |
H A D | regcomp.sym | 157 … str ; Like EXACT, but match using /id rules; (string not UTF-8, ASCII folded; non-ASCII not) 158 … EXACT, str ; Like EXACT, but match using /il rules; (string not likely to be folded) 159 EXACTFU EXACT, str ; Like EXACT, but match using /iu rules; (string folded) 161 # The reason MICRO and SHARP S aren't folded in non-UTF8 patterns is because 165 … match using /iaa rules; (string folded except MICRO in non-UTF8 patterns; doesn't contain SHARP S… 167 …NO_TRIE EXACT, str ; Like EXACTFAA, (string not UTF-8, folded except: MICRO, SHARP S; folded le… 171 EXACTFUP EXACT, str ; Like EXACT, but match using /iu rules; (string not UTF-8, folded ex… 172 # In order for a non-UTF-8 EXACTFAA to think the pattern is pre-folded when 174 # EXACTFAA_MICRO which would not be considered pre-folded for UTF-8 targets, 178 EXACTFLU8 EXACT, str ; Like EXACTFU, but use /il, UTF-8, (string is folded, and everything…
|
H A D | regcomp_trie.c | 787 U8 folded= folder[ (U8) uvc ]; in Perl_make_trie() local 788 if ( !trie->charmap[ folded ] ) { in Perl_make_trie() 789 trie->charmap[ folded ]=( ++trie->uniquecharcount ); in Perl_make_trie() 790 TRIE_STORE_REVCHAR( folded ); in Perl_make_trie()
|
H A D | regcomp_study.c | 142 U8 folded[UTF8_MAX_FOLD_CHAR_EXPAND * UTF8_MAXBYTES_CASE + 1] = { '\0' }; in S_make_exactf_invlist() local 155 U8 *d = folded; in S_make_exactf_invlist() 181 s = folded; in S_make_exactf_invlist() 1275 U8* folded = NULL; in Perl_join_exact() local 1296 Newx(folded, UTF8_MAX_FOLD_CHAR_EXPAND * STR_LEN(scan) + 1, U8); in Perl_join_exact() 1297 d = folded; in Perl_join_exact() 1322 s = folded; in Perl_join_exact() 1381 Safefree(folded); in Perl_join_exact()
|
H A D | regcomp.c | 6773 UV folded; in S_regatom() local 6794 if ( folded > 255 in S_regatom() 10437 UV folded = _to_uni_fold_flags( in S_regclass() local 10452 if (folded != value) { in S_regclass() 10805 UV folded; in S_regclass() local 10870 ? folded in S_regclass() 11678 value = folded; in S_optimize_regclass() 11682 && folded == 's' in S_optimize_regclass() 11688 value = folded; in S_optimize_regclass() 11713 value = folded; in S_optimize_regclass() [all …]
|
/openbsd/gnu/gcc/gcc/ |
H A D | tree-ssa-pre.c | 956 tree folded; in fully_constant_expression() local 957 folded = fold (t); in fully_constant_expression() 958 if (folded && is_gimple_min_invariant (folded)) in fully_constant_expression() 959 return folded; in fully_constant_expression() 2189 tree folded; local 2219 folded = build4 (ARRAY_REF, TREE_TYPE (genop), op0, op1, 2221 return folded; 2233 return folded; 2243 return folded; 2304 tree folded, forced_stmts, newexpr; in create_expression_by_pieces() local [all …]
|
H A D | tree-ssa-reassoc.c | 760 tree folded = fold_binary (opcode, TREE_TYPE (oelm1->op), in optimize_ops_list() local 763 if (folded && is_gimple_min_invariant (folded)) in optimize_ops_list() 771 add_to_ops_vec (ops, folded); in optimize_ops_list()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | README.txt | 26 This could be folded to
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86Schedule.td | 12 // Instructions with folded loads need to read the memory operand immediately, 26 // Instructions with both a load and a store folded are modeled as a folded 42 // variants: With and without a folded load. 44 // with a folded load. 46 // The SchedWrite to use when a load is folded into the instruction. 49 // until the folded load has completed. 125 // Loads, stores, and moves, not folded with other operations.
|
H A D | X86ScheduleSLM.td | 57 // Many SchedWrites are defined in pairs with and without a folded load. 58 // Instructions with folded loads are usually micro-fused, so they only appear 61 // folded loads. 82 // A folded store needs a cycle on MEC_RSV for the store data (using the same uop),
|
H A D | X86ScheduleBtVer2.td | 116 // Many SchedWrites are defined in pairs with and without a folded load. 117 // Instructions with folded loads are usually micro-fused, so they only appear 120 // folded loads. 183 // A folded store needs a cycle on the SAGU for the store data, most RMW 272 // Loads, stores, and moves, not folded with other operations.
|
H A D | X86ScheduleZnver3.td | 395 // Many SchedWrites are defined in pairs with and without a folded load. 396 // Instructions with folded loads are usually micro-fused, so they only appear 399 // folded loads. 428 // For classes without folded loads. 447 // For classes with folded loads. 491 // Instructions with both a load and a store folded are modeled as a folded 495 // Loads, stores, and moves, not folded with other operations.
|
H A D | X86ScheduleBdVer2.td | 185 // Many SchedWrites are defined in pairs with and without a folded load. 186 // Instructions with folded loads are usually micro-fused, so they only appear 189 // folded loads. 261 // A folded store needs a cycle on the PdStore for the store data. 265 // Loads, stores, and moves, not folded with other operations.
|
/openbsd/sys/arch/octeon/octeon/ |
H A D | cn3xxx.dts | 30 * of .byte values have to be folded manually into .word values
|
/openbsd/share/dict/ |
H A D | README | 52 Note that word lists must be sorted in dictionary order and with case folded.
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perldebguts.pod | 685 (string not UTF-8, ASCII folded; non-ASCII 688 (string not likely to be folded) 690 (string folded) 693 (string folded except MICRO in non-UTF8 695 UTF-8; folded length <= unfolded) 696 EXACTFAA_NO_TRIE str Like EXACTFAA, (string not UTF-8, folded 697 except: MICRO, SHARP S; folded length <= 701 (string not UTF-8, folded except MICRO: 705 is folded, and everything in it is above
|
/openbsd/lib/libkeynote/ |
H A D | README | 26 *** Notice that the 4 programs of previous releases have been folded into one
|
/openbsd/gnu/llvm/llvm/docs/GlobalISel/ |
H A D | InstructionSelect.rst | 90 * isObviouslySafeToFold() - Check for reasons an instruction can't be sunk and folded into another.
|
/openbsd/gnu/usr.bin/gcc/gcc/cp/ |
H A D | typeck.c | 3697 register tree folded; local 3699 folded = fold (result); 3700 if (folded == result) 3701 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1); 3703 return cp_convert (final_type, folded); 3704 return folded; 3736 register tree result, folded; local 3777 folded = fold (result); 3778 if (folded == result) 3779 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1); [all …]
|
/openbsd/gnu/usr.bin/perl/Porting/ |
H A D | deparse-skips.txt | 49 comp/fold.t # mutability of folded constants 60 op/join.t # mutability of folded constants
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | FaultMaps.rst | 25 check can be folded into a nearby memory operation that operates on
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | c-typeck.c | 2588 tree folded; local 2590 folded = fold (result); 2591 if (folded == result) 2592 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1); 2594 return convert (final_type, folded); 2595 return folded; 2627 tree result, folded; local 2694 folded = fold (result); 2695 if (folded == result) 2696 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1); [all …]
|