Searched refs:G_LIST (Results 1 - 25 of 32) sorted by relevance

12

/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dmulticall.t78 use XS::APItest qw(multicall_return G_VOID G_SCALAR G_LIST);
96 ::is (join('-',@$got), join('-', @$args), "G_LIST: $desc");
100 for my $gimme (G_VOID, G_SCALAR, G_LIST) {
H A Dcall.t63 [ G_LIST, [ ], [ qw(x 1) ], '0 args, G_LIST' ],
64 [ G_LIST, [ qw(a p q) ], [ qw(b p x 3) ], '3 args, G_LIST' ],
92 my $returnval = ((($flags & G_WANT) == G_LIST) || ($flags & G_DISCARD))
316 $desc = "eval_sv('$code', G_LIST|$keep_desc)";
317 @ret = eval_sv($code, G_LIST|$keep);
320 $desc = "call_sv('$code', G_EVAL|G_LIST|$keep_desc)";
321 @ret = call_sv($code, G_EVAL|G_LIST|$keep);
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/
H A DMakefile.PL25 G_SCALAR G_LIST G_VOID G_DISCARD G_EVAL G_NOARGS
34 {name=>"G_WANT", default=>["IV", "G_LIST|G_VOID"]});
H A DAPItest.pm220 call_sv( sub { @_, 'c' }, G_LIST, 'a', 'b');
/openbsd-current/gnu/usr.bin/perl/ext/File-Glob/
H A DGlob.xs111 if (gimme != G_LIST)
123 if (gimme == G_LIST) {
289 if (!patav && gimme == G_LIST) { PUTBACK; return TRUE; }
326 if (GIMME_V == G_LIST) { PUTBACK; return TRUE; }
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/
H A DListUtil.xs973 if(ret_gimme == G_LIST) {
1000 if(ret_gimme == G_LIST) {
1055 if(ret_gimme == G_LIST) {
1066 if(ret_gimme == G_LIST)
1084 if(ret_gimme == G_LIST) {
1094 if(ret_gimme == G_LIST)
1136 I32 gimme = G_LIST;
1199 if(ret_gimme == G_LIST)
1217 count = call_sv((SV*)cv, G_LIST);
1221 if(count > 2 && !args_copy && ret_gimme == G_LIST) {
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/threads/
H A Dthreads.xs1141 context = G_LIST;
1156 context = G_LIST;
1160 context = G_LIST;
1182 context |= (GIMME_V & (~(G_LIST|G_SCALAR|G_VOID)));
1227 list_context = (GIMME_V == G_LIST);
1752 ST(0) = ((thread->gimme & G_WANT) == G_LIST) ? &PL_sv_yes :
/openbsd-current/gnu/usr.bin/perl/
H A Dpp_hot.c1880 if (gimme == G_LIST) {
1990 if (gimme == G_LIST)
2090 if (gimme != G_LIST)
2100 if (gimme == G_LIST) {
2478 U32 lval = (gimme == G_LIST)
2645 if (UNLIKELY(gimme == G_LIST)) {
2698 if (UNLIKELY(gimme == G_LIST)) {
3157 if (! (global && gimme == G_LIST))
3190 if (global && (gimme != G_LIST || (dynpm->op_pmflags & PMf_CONTINUE))) {
3200 if ((!RXp_NPARENS(prog) && !global) || gimme != G_LIST) {
[all...]
H A Dpp_ctl.c63 case G_LIST:
1119 if (gimme == G_LIST) {
1185 else if (gimme == G_LIST)
1212 if (GIMME_V == G_LIST)
1225 if (GIMME_V == G_LIST) {
1283 if (GIMME_V == G_LIST) {
2048 if (gimme != G_LIST) {
2060 if (gimme != G_LIST) {
2108 PUSHs(boolSV((gimme & G_WANT) == G_LIST));
2212 const U8 gimme = G_LIST;
[all...]
H A Dpp.c229 if (type != SVt_PV && GIMME_V == G_LIST) {
430 if (GIMME_V != G_LIST) {
1701 if (gimme == G_LIST && PL_op->op_private & OPpREPEAT_DOLIST) {
1766 if (gimme == G_LIST && PL_op->op_private & OPpREPEAT_DOLIST) {
5008 if (GIMME_V != G_LIST) {
5053 if (GIMME_V != G_LIST) {
5080 if (gimme == G_LIST) {
5100 else if (gimme == G_LIST) {
5148 if (gimme == G_LIST) {
5504 if (GIMME_V != G_LIST) {
[all...]
H A Dpp_sys.c1305 if (GIMME_V == G_LIST && tbuf) {
2941 if (gimme != G_LIST) {
4112 } while (gimme == G_LIST);
4114 if (!dp && gimme != G_LIST)
4122 if (gimme == G_LIST)
4764 if (GIMME_V == G_LIST) {
4774 if (GIMME_V == G_LIST) {
4857 if (GIMME_V != G_LIST) { /* scalar context */
5108 if (GIMME_V != G_LIST) {
5197 if (GIMME_V != G_LIST) {
[all...]
H A Dbuiltin.c451 case G_LIST:
H A Duniversal.c1035 if ( gimme == G_LIST ) {
1082 if ( gimme == G_LIST ) {
H A Dcop.h1188 #define G_LIST 3 macro
1194 # define G_ARRAY G_LIST
H A Dpp.h637 else if (gimme == G_LIST) { \
H A Dclass.c1032 defop = op_contextualize(op_force_list(defop), G_LIST);
H A Dpp_sort.c711 if (gimme != G_LIST) {
H A Dop.h91 C<G_SCALAR> or C<G_LIST> for void, scalar or list context,
96 C<G_SCALAR> or C<G_LIST>; in a void context, it returns C<G_SCALAR>.
180 ? G_LIST \
H A Dscope.c1744 case G_LIST:
H A Dgv.c4112 case G_LIST:
4159 case G_LIST:
/openbsd-current/gnu/usr.bin/perl/cpan/Socket/
H A DSocket.xs306 #ifndef G_LIST
307 # define G_LIST G_ARRAY
308 #endif /* !G_LIST */
1061 if(GIMME_V == G_LIST) {
1145 if(GIMME_V == G_LIST) {
/openbsd-current/gnu/usr.bin/perl/dist/Time-HiRes/
H A DHiRes.xs1188 if (GIMME_V == G_LIST) {
1245 if (GIMME_V == G_LIST) {
1265 if (GIMME_V == G_LIST) {
1518 fakeop.op_flags = GIMME_V == G_LIST ? OPf_WANT_LIST :
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs3335 if (GIMME_V == G_LIST) {
3357 if (GIMME_V == G_LIST) {
3383 if (GIMME_V == G_LIST) {
3393 if (GIMME_V == G_LIST) {
3417 if (GIMME_V == G_LIST) {
3427 if (GIMME_V == G_LIST) {
/openbsd-current/gnu/usr.bin/perl/dist/IO/
H A DIO.xs560 if (!ix && GIMME_V != G_LIST)
/openbsd-current/gnu/usr.bin/perl/ext/Opcode/
H A DOpcode.xs534 if (GIMME_V == G_LIST) {

Completed in 398 milliseconds

12