| /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
| H A D | arrayexpr.t | 18 push @t, arrayfullexpr 1+2; 19 push @t, arrayfullexpr 0 || 2; 20 push @t, arrayfullexpr 1 || 2; 21 push @t, arrayfullexpr 0 || 2, 3; 22 push @t, arrayfullexpr 1 || 2, 3; 23 push @t, arrayfullexpr 1, 2; 24 push @t, arrayfullexpr 0 or 2; 25 push @t, arrayfullexpr 1 or 2; 26 push @t, arrayfullexpr 0 or 2, 3; 27 push @t, arrayfullexpr 1 or 2, 3; [all …]
|
| H A D | cleanup.t | 13 push @events, "aa0"; 14 establish_cleanup sub { push @events, "bb0" }; 15 push @events, "aa1"; 20 push @events, "cc0"; 21 push @events, [ "cc1", aa() ]; 22 push @events, "cc2"; 27 push @events, "dd0"; 28 push @events, [ "dd1", cc() ]; 42 sub ff { push @events, "ff0" } 46 ((push @events, "ee0"), (establish_cleanup \&ff), (push @events, "ee1"), "ee2") [all …]
|
| /openbsd-src/gnu/usr.bin/perl/dist/Math-Complex/t/ |
| H A D | Complex.t | 38 push @script, "{ my \$t=$test; ".q{ 83 push(@script, <<'EOT'); 91 push(@script, qq(print "ok $test\\n"}\n)); 94 push(@script, <<'EOT'); 104 push(@script, qq(print "ok $test\\n"}\n)); 107 push(@script, <<'EOT'); 117 push(@script, qq(print "ok $test\\n"}\n)); 137 push(@script, $constants); 145 push(@script, <<EOT); 151 push(@script, qq(print "ok $test\\n";\n)); [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | for-many.t | 19 push @have, "$q;$r"; 26 push @have, "$q;$r"; 33 push @have, "$q;$r"; 40 push @have, "$q;$r;$s"; 47 push @have, "$q;$r;$s"; 54 push @have, join ';', map { $_ // 'undef' } $q, $r, $s; 62 push @have, join ';', map { $_ // 'undef' } $q, $r, $s; 71 push @have, $q; 78 push @have, $q; 94 push [all...] |
| H A D | push.t | 27 push(@x,@x); 29 push(@x,4); 33 push @$undef1, 1, 2, 3; 41 eval q{ push $hashref, 0, 1, 2, 3 }; 42 like( $@, qr/Experimental push on scalar is now forbidden/, 'push onto a hashref'); 44 eval q{ push bless([]), 0, 1, 2, 3 }; 45 like( $@, qr/Experimental push on scalar is now forbidden/, 'push onto a blessed array ref'); 53 push @{ two_things() }, 3; 79 eval { push @readonly_array, () }; 82 eval { push @readonly_array, 9 };
|
| H A D | range.t | 54 push @y, $_; 65 push(@y, $_); 152 @foo=(); push @foo, $_ for undef..2; 155 @foo=(); push @foo, $_ for -2..undef; 158 @foo=(); push @foo, $_ for undef..'2'; 161 @foo=(); push @foo, $_ for '-2'..undef; 164 @foo=(); push @foo, $_ for undef.."B"; 167 @foo=(); push @foo, $_ for "".."B"; 170 @foo=(); push @foo, $_ for "B"..undef; 173 @foo=(); push @foo, $_ for "B"..""; [all …]
|
| H A D | tiehash.t | 17 push @{$self->[0]}, $key; 18 push @{$self->[1]}, $value; 90 push @have, $k; 110 push @have, $k; 145 push @have, $k; 207 push @got, scalar each %Camelus; 208 push @got, scalar each %Camelus; 209 push @got, scalar each %Camelus; 216 push @got, scalar each %Camelus; 224 push @got, scalar each %Camelus; [all …]
|
| /openbsd-src/gnu/usr.bin/cvs/contrib/ |
| H A D | log_accum.in | 64 push(@files, grep(/^$FILE_PREFIX\..*\.$id$/, readdir(DIR))); 126 push(@text, &format_names($lastdir, @files)); 130 push(@files, $line); 133 push(@text, &format_names($lastdir, @files)); 167 push(@text, $leader.$_); 354 push(@text, &build_header()); 355 push(@text, ""); 356 push(@text, $files[0]); 357 push(@text, ""); 361 push(@text, $_); [all …]
|
| /openbsd-src/regress/usr.bin/dc/ |
| H A D | t20.in | 40 lt # push to 41 lf # push from 46 ln # push n 47 lf # push from 48 lt # push to 49 1 # push processed marker 1 50 ln # push n 51 1 # push 1 53 lf # push from 54 ll # push left [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_ring_buffer_test.cpp | 52 RB->push(T(1)); EXPECT_RING_BUFFER(1, 0, 0, 0); in TestRB() 53 RB->push(T(2)); EXPECT_RING_BUFFER(2, 1, 0, 0); in TestRB() 54 RB->push(T(3)); EXPECT_RING_BUFFER(3, 2, 1, 0); in TestRB() 55 RB->push(T(4)); EXPECT_RING_BUFFER(4, 3, 2, 1); in TestRB() 56 RB->push(T(5)); EXPECT_RING_BUFFER(5, 4, 3, 2); in TestRB() 57 RB->push(T(6)); EXPECT_RING_BUFFER(6, 5, 4, 3); in TestRB() 58 RB->push(T(7)); EXPECT_RING_BUFFER(7, 6, 5, 4); in TestRB() 59 RB->push(T(8)); EXPECT_RING_BUFFER(8, 7, 6, 5); in TestRB() 60 RB->push(T(9)); EXPECT_RING_BUFFER(9, 8, 7, 6); in TestRB() 61 RB->push(T(10)); EXPECT_RING_BUFFER(10, 9, 8, 7); in TestRB() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | subst_amp.t | 21 s/\Ga(?{push @res, $_, $`})/xx/g; 27 s/\Ga(?{push @res, $_, $`})/x/g; 33 s/\Ga(?{push @res, $_, $`})/xx/; 39 s/\Ga(?{push @res, $_, $`})/x/; 45 $a =~ s/\Ga(?{push @res, $_, $`})/xx/g; 51 $a =~ s/\Ga(?{push @res, $_, $`})/x/g; 57 $a =~ s/\Ga(?{push @res, $_, $`})/xx/; 63 $a =~ s/\Ga(?{push @res, $_, $`})/x/; 72 $a =~ s/\Ga(?{push @res, $_, $`})/x2/ge; 78 $a =~ s/\Ga(?{push @res, $_, $`})/x1/ge; [all …]
|
| H A D | rxcode.t | 45 like( 'ab', qr/^a(?{push @ar,101})(?:b(?{push @ar,102}))?/, 'ab =~ ab? with code push' ); 55 unlike( 'a', qr/^a(?{push @ar,105})b(?{push @ar,106})/, 'a !~ ab (push)' ); 59 unlike( 'abc', qr/^a(?{push @ar,107})b(?{push @ar,108})$/, 'abc !~ ab$ (push)' ); 64 like( 'ab', qr/^a(?{push @var,109})(?:b(?{push @var,110}))?/, 'ab =~ ab? push to package var' ); 70 unlike( 'a', qr/^a(?{push @var,111})b(?{push @var,112})/, 'a !~ ab (push package var)' ); 74 unlike( 'abc', qr/^a(?{push @var,113})b(?{push @var,114})$/, 'abc !~ ab$ (push package var)' );
|
| H A D | regexp_unicode_prop.t | 17 local $SIG {__WARN__} = sub {push @warnings, "@_"}; 181 push @DEFERRABLE_USER_DEFINED_PROPERTIES, @USER_DEFINED_PROPERTIES; 182 push @DEFERRABLE_USER_DEFINED_PROPERTIES, @USER_CASELESS_PROPERTIES; 194 push @DEFERRED, qr/\p{$property}/, 224 push @{$d {IsAlpha}} => map {$class =~ /^[LM]/ ? $_ : "!$_"} @$chars; 225 push @{$d {IsAlnum}} => map {$class =~ /^[LMN]./ ? $_ : "!$_"} @$chars; 226 push @{$d {IsASCII}} => map {length ($_) == 1 || $_ eq '\x{00}' 228 push @{$d {IsCntrl}} => map {$class =~ /^C/ ? $_ : "!$_"} @$chars; 229 push @{$d {IsBlank}} => map {$class =~ /^Z[lps]/ ? $_ : "!$_"} @$chars; 230 push @{$d {IsDigit}} => map {$class =~ /^Nd$/ ? $_ : "!$_"} @$chars; [all …]
|
| H A D | reg_mesg.t | 74 push @new_expect, $element; 117 push @ret, $pat => $msg; 119 push @ret, $l1_pat => $l1_msg unless $l1_pat =~ /#no latin1/; 554 push @death, @death_utf8; 711 push @warning, @warnings_utf8; 749 push @warning_only_under_strict, @warning_utf8_only_under_strict; 800 push @death, $death_only_under_strict[$i], # The regex 806 push @death, mark_as_utf8($death_utf8_only_under_strict[$i], 845 push @warning_tests, @warning_only_under_strict; 852 push [all...] |
| H A D | charset.t | 72 push @{$testcases{'[:cntrl:]'}}, utf8::unicode_to_native($_) 74 push @{$testcases{'[:blank:]'}}, utf8::unicode_to_native(0xA0); 75 push @{$testcases{'[:punct:]'}}, utf8::unicode_to_native(0xA1); 76 push @{$testcases{'[:graph:]'}}, utf8::unicode_to_native($_) 78 push @{$testcases{'[:punct:]'}}, utf8::unicode_to_native(0xA7); 79 push @{$testcases{'[:graph:]'}}, utf8::unicode_to_native(0xA8); 80 push @{$testcases{'[:graph:]'}}, utf8::unicode_to_native(0xA9); 81 push @{$testcases{'[:lower:]'}}, utf8::unicode_to_native(0xAA); 82 push @{$testcases{'[:punct:]'}}, utf8::unicode_to_native(0xAB); 83 push [all...] |
| /openbsd-src/gnu/usr.bin/perl/t/ |
| H A D | harness | 101 push @$ary, shift @ARGV; 104 push @$ary, (split/=/,shift @ARGV)[1]; 206 push @alone_files, $file; 221 push $split_partial_serials{$file_dir}{seq}->@*, [ $1, $file ]; 227 push $split_partial_serials{$file_dir}{par}->@*, $file; 304 push @seq, map { +{ seq => $_ } } sort @alone_files if @alone_files; 339 push @tests, @seq; 348 push @$which, qw(comp run cmd); 349 push @$which, qw(io re opbasic op op/hook uni mro lib class porting perf test_pl); 350 push [all...] |
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | locale.t | 882 push @incompatible_locales, $item unless exists $seen{$item}; 894 push @warnings, ($warning =~ s/\n/\n# /sgr); 951 push @chars, chr(258); # This sentinel simplifies the loop termination 1078 push @{$Okay{$i}}, $Locale; 1269 push @failures, $x unless $ok; 1270 push @fold_failures, $x unless $fold_ok; 1298 push @failures, $x unless $ok; 1299 push @fold_failures, $x unless $fold_ok; 1317 push(@Added_alpha, $_) if (/\W/); 1333 push [all...] |
| /openbsd-src/lib/libcrypto/perlasm/ |
| H A D | cbc.pl | 53 &push("ebp"); 54 &push("ebx"); 55 &push("esi"); 56 &push("edi"); 71 &push($out); 72 &push($in); 73 &push($out); # used in decrypt for iv[1] 74 &push($in); # used in decrypt for iv[0] 88 { &mov("eax", &wparam($p3)); &push("eax"); } 89 else { &push("ecx"); } [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ext/POSIX/ |
| H A D | Makefile.PL | 15 push @libs, qw(m posix cposix); 18 push @libs, qw(sunmath); 21 push @libs, qw(c128); 24 push @libs, qw(quadmath); 104 push @names, 109 push @names, 113 push @names, {name=>$_, type=>"UV"} 116 push @names, {name=>$_, type=>"NV", not_constant=>1} 120 push @names, {name=>$_, type=>"IV"} 126 push @names, {name=>$_, type=>"IV"} [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ |
| H A D | ProxySubs.pm | 126 my ($self, $type, $iterator, $hash, $subname, $push) = @_; 136 if ($push) { 186 my $push = $options->{push}; 207 if $push && !$can_do_pcs; 210 if $explosives && $push; 235 $push = C_stringify($package . '::' . $push) if $push; 253 my $return_type = $push ? 'HE *' : 'void'; 297 print $c_fh " return he;\n" if $push; 380 if ($push) { 382 AV *push = get_av(\"$push\", GV_ADD); [all …]
|
| /openbsd-src/lib/libcrypto/bn/arch/amd64/ |
| H A D | bignum_mul.S | 65 push rdi 66 push rsi 77 push rbx 78 push rbp 79 push r12 80 push r13 81 push r14 82 push r15
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| H A D | pack-test-2.c | 6 #pragma pack(push) /* { dg-error "malformed" } */ 9 #pragma pack(push, foo, 1) 13 #pragma pack(push, foo, 1) 17 #pragma pack(push, foo, 1) 21 #pragma pack(push, foo, 3) /* { dg-error "small power of two" } */
|
| /openbsd-src/gnu/usr.bin/perl/lib/DBM_Filter/t/ |
| H A D | 02core.t | 15 push @INC, $tempdir; 214 is $@, '', "push 'append_A' filter" ; 244 is $@, '', "push 'append_A' filter" ; 274 is $@, '', "push 'append_A' filter" ; 304 is $@, '', "push 'append_A' filter" ; 307 is $@, '', "push 'append_B' filter" ; 337 is $@, '', "push 'append_A' filter" ; 340 is $@, '', "push 'append_B' filter" ; 343 is $@, '', "push 'append_C' filter" ; 346 is $@, '', "push 'append_D' filter" ; [all …]
|
| /openbsd-src/libexec/ld.so/i386/ |
| H A D | ldasm.S | 42 call 1f # push &_DYNAMIC... 46 pushl %ebx # push dl_data for dl_boot_bind 54 pushl %edi # push saved dl_data 57 pushl %eax # push loff from dl_data 64 push %eax # push envp 67 push %eax # push argv
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 195 UnprocessedSubVals.push(Val); in buildBooleanFormula() 209 UnprocessedSubVals.push(&C->getLeftSubValue()); in buildBooleanFormula() 210 UnprocessedSubVals.push(&C->getRightSubValue()); in buildBooleanFormula() 215 UnprocessedSubVals.push(&D->getLeftSubValue()); in buildBooleanFormula() 216 UnprocessedSubVals.push(&D->getRightSubValue()); in buildBooleanFormula() 221 UnprocessedSubVals.push(&N->getSubVal()); in buildBooleanFormula() 226 UnprocessedSubVals.push(&I->getLeftSubValue()); in buildBooleanFormula() 227 UnprocessedSubVals.push(&I->getRightSubValue()); in buildBooleanFormula() 232 UnprocessedSubVals.push(&B->getLeftSubValue()); in buildBooleanFormula() 233 UnprocessedSubVals.push(&B->getRightSubValue()); in buildBooleanFormula() [all …]
|