Home
last modified time | relevance | path

Searched refs:push (Results 1 – 25 of 1118) sorted by relevance

12345678910>>...45

/openbsd/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Darrayexpr.t18 push @t, arrayfullexpr 1+2;
19 push @t, arrayfullexpr 0 || 2;
20 push @t, arrayfullexpr 1 || 2;
23 push @t, arrayfullexpr 1, 2;
24 push @t, arrayfullexpr 0 or 2;
25 push @t, arrayfullexpr 1 or 2;
28 { push @t, arrayfullexpr 1, 2 }
51 push @t, arrayfullexpr 7 < 8;
94 push @t, arraylistexpr 1+2;
99 push @t, arraylistexpr 1, 2;
[all …]
H A Dcleanup.t13 push @events, "aa0";
15 push @events, "aa1";
20 push @events, "cc0";
22 push @events, "cc2";
27 push @events, "dd0";
50 push @events, "gg0";
58 push @events, "hh0";
75 push @events, "pp0";
77 push @events, "pp1";
79 push @events, "pp3";
[all …]
/openbsd/gnu/usr.bin/perl/dist/Math-Complex/t/
H A DComplex.t83 push(@script, <<'EOT');
94 push(@script, <<'EOT');
107 push(@script, <<'EOT');
145 push(@script, <<EOT);
160 push(@script, <<EOT);
204 push(@script, <<EOT);
218 push @script, <<EOS;
224 push @script, <<EOS;
231 push @script, <<EOS;
238 push @script, <<EOS;
[all …]
/openbsd/gnu/usr.bin/perl/t/op/
H A Dfor-many.t21 push @have, "$q";
29 push @have, "$q";
38 push @have, "$q;$r";
56 push @have, "$q;$r";
63 push @have, "$q;$r";
70 push @have, "$q;$r";
77 push @have, "$q;$r;$s";
84 push @have, "$q;$r;$s";
108 push @have, $q;
115 push @have, $q;
[all …]
H A Dpush.t27 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 Drange.t54 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';
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".."";
410 push @foo, $_;
[all …]
H A Dtiehash.t17 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/gnu/usr.bin/cvs/contrib/
H A Dlog_accum.in130 push(@files, $line);
355 push(@text, "");
357 push(@text, "");
361 push(@text, $_);
381 push(@text, "");
383 push(@text, "");
387 push(@text, $_);
496 push(@text, "");
516 push(@text, "");
521 push(@text, @lines);
[all …]
/openbsd/regress/usr.bin/dc/
H A Dt20.in40 lt # push to
41 lf # push from
46 ln # push n
47 lf # push from
48 lt # push to
50 ln # push n
51 1 # push 1
53 lf # push from
59 ln # push n
60 1 # push 1
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_ring_buffer_test.cpp52 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/gnu/usr.bin/perl/t/re/
H A Drxcode.t45 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 Dsubst_amp.t21 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;
84 $a =~ s/\Ga(?{push @res, $_, $`})/x2/e;
[all …]
H A Dregexp_unicode_prop.t17 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;
226 push @{$d {IsASCII}} => map {length ($_) == 1 || $_ eq '\x{00}'
231 push @{$d {IsGraph}} => map {$class =~ /^([LMNPS]|Co)/
233 push @{$d {IsPrint}} => map {$class =~ /^([LMNPS]|Co|Zs)/
238 push @{$d {IsWord}} => map {$class =~ /^[LMN]/ || $_ eq "_"
240 push @{$d {IsSpace}} => map {$class =~ /^Z/ ||
[all …]
H A Dreg_mesg.t61 push @new_expect, $element;
104 push @ret, $pat => $msg;
106 push @ret, $l1_pat => $l1_msg unless $l1_pat =~ /#no latin1/;
536 push @death, @death_utf8;
693 push @warning, @warnings_utf8;
731 push @warning_only_under_strict, @warning_utf8_only_under_strict;
782 push @death, $death_only_under_strict[$i], # The regex
788 push @death, mark_as_utf8($death_utf8_only_under_strict[$i],
827 push @warning_tests, @warning_only_under_strict;
843 push @warning_tests, $death_only_under_strict[$i], # The regex
[all …]
H A Dcharset.t72 push @{$testcases{'[:cntrl:]'}}, utf8::unicode_to_native($_)
76 push @{$testcases{'[:graph:]'}}, utf8::unicode_to_native($_)
83 push @{$testcases{'[:graph:]'}}, utf8::unicode_to_native($_)
96 push @{$testcases{'[:upper:]'}}, utf8::unicode_to_native($_)
99 push @{$testcases{'[:upper:]'}}, utf8::unicode_to_native($_)
101 push @{$testcases{'[:lower:]'}}, utf8::unicode_to_native($_)
104 push @{$testcases{'[:lower:]'}}, utf8::unicode_to_native($_)
107 push @{$testcases{'[:alpha:]'}}, @{$testcases{'[:lower:]'}},
109 push @{$testcases{'[:alnum:]'}}, @{$testcases{'[:alpha:]'}},
146 push @charsets, 'l';
[all …]
/openbsd/gnu/usr.bin/perl/t/
H A Dharness93 push @$ary, shift @ARGV;
96 push @$ary, (split/=/,shift @ARGV)[1];
198 push @alone_files, $file;
331 push @tests, @seq;
340 push @$which, qw(comp run cmd);
343 push @$which, 'win32' if $is_win32;
345 push @$which, 'bigmem' if $ENV{PERL_TEST_MEMORY};
349 push @tests, @next;
357 push @last, @ext_from_manifest;
360 push @tests, @last;
[all …]
/openbsd/gnu/usr.bin/perl/lib/
H A Dlocale.t1011 push @{$Okay{$i}}, $Locale;
1191 push @failures, $x unless $ok;
1220 push @failures, $x unless $ok;
1239 push(@Added_alpha, $_) if (/\W/);
1602 push @f, " " if " " =~ /[[:graph:]]/;
1605 push @f, " " if " " =~ /[[:graph:]]/;
1868 push @sorted_controls, "\0",
2456 push @f, $num
2463 push @f, $num
2755 push @s, $l if $p == 0;
[all …]
/openbsd/lib/libcrypto/perlasm/
H A Dcbc.pl53 &push("ebp");
54 &push("ebx");
55 &push("esi");
56 &push("edi");
71 &push($out);
72 &push($in);
74 &push($in); # used in decrypt for iv[0]
89 else { &push("ecx"); }
96 else { &push("ecx"); }
103 else { &push("ecx"); }
[all …]
/openbsd/gnu/usr.bin/perl/ext/POSIX/
H A DMakefile.PL15 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"}
120 push @names, {name=>$_, type=>"IV"}
126 push @names, {name=>$_, type=>"IV"}
130 push @names, {name=>$_, type=>"NV"}
[all …]
/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/
H A DProxySubs.pm136 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);
452 $add_symbol_subname, $push);
[all …]
/openbsd/lib/libcrypto/bn/arch/amd64/
H A Dbignum_mul.S65 push rdi
66 push rsi
77 push rbx
78 push rbp
79 push r12
80 push r13
81 push r14
82 push r15
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dpack-test-2.c6 #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/gnu/usr.bin/perl/lib/DBM_Filter/t/
H A D02core.t15 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/libexec/ld.so/i386/
H A Dldasm.S42 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/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DWatchedLiteralsSolver.cpp195 UnprocessedSubVals.push(Val); in buildBooleanFormula()
209 UnprocessedSubVals.push(&C->getLeftSubValue()); in buildBooleanFormula()
215 UnprocessedSubVals.push(&D->getLeftSubValue()); in buildBooleanFormula()
221 UnprocessedSubVals.push(&N->getSubVal()); in buildBooleanFormula()
226 UnprocessedSubVals.push(&I->getLeftSubValue()); in buildBooleanFormula()
232 UnprocessedSubVals.push(&B->getLeftSubValue()); in buildBooleanFormula()
269 UnprocessedSubVals.push(Val); in buildBooleanFormula()
291 UnprocessedSubVals.push(&C->getLeftSubValue()); in buildBooleanFormula()
339 UnprocessedSubVals.push(&N->getSubVal()); in buildBooleanFormula()
353 UnprocessedSubVals.push(&I->getLeftSubValue()); in buildBooleanFormula()
[all …]

12345678910>>...45