Home
last modified time | relevance | path

Searched refs:OP_CUSTOM (Results 1 – 10 of 10) sorted by relevance

/openbsd/gnu/usr.bin/perl/
H A Dop.h953 #define XOPd_xop_name PL_op_name[OP_CUSTOM]
954 #define XOPd_xop_desc PL_op_desc[OP_CUSTOM]
1043 #define OP_NAME(o) ((o)->op_type == OP_CUSTOM \
1046 #define OP_DESC(o) ((o)->op_type == OP_CUSTOM \
1049 #define OP_CLASS(o) ((o)->op_type == OP_CUSTOM \
H A Dopnames.h403 OP_CUSTOM = 386, enumerator
H A Dop.c1633 if (type == OP_CUSTOM) { in Perl_op_sibling_splice()
5675 || type == OP_CUSTOM); in Perl_newLISTOP()
5816 || type == OP_CUSTOM in Perl_newUNOP()
5855 || type == OP_CUSTOM); in Perl_newUNOP_AUX()
5893 || type == OP_CUSTOM); in S_newMETHOP_internal()
7254 || type == OP_CUSTOM); in Perl_newPMOP()
7745 || type == OP_CUSTOM); in Perl_newSVOP()
7800 || type == OP_CUSTOM); in Perl_newPADOP()
7866 || type == OP_CUSTOM in Perl_newPVOP()
8820 || type == OP_CUSTOM); in S_new_logop()
[all …]
H A Dpeep.c1397 || type == OP_CUSTOM in S_finalize_op()
4162 case OP_CUSTOM: { in Perl_rpeep()
H A Ddump.c3258 if (o->op_type == OP_CUSTOM) in Perl_op_class()
H A Dsv.c17414 case OP_CUSTOM: /* XS or custom code could trigger random warnings */
/openbsd/gnu/usr.bin/perl/ext/XS-APItest/
H A DAPItest.xs2416 unop = (UNOP*)mkUNOP(OP_CUSTOM, kid);
2447 unop = (UNOP*)mkUNOP(OP_CUSTOM, NULL);
4710 o = newOP(OP_CUSTOM, 0); in test_newOP_CUSTOM()
4712 o = newUNOP(OP_CUSTOM, 0, NULL); in test_newOP_CUSTOM()
4714 o = newUNOP_AUX(OP_CUSTOM, 0, NULL, NULL); in test_newOP_CUSTOM()
4720 o = newBINOP(OP_CUSTOM, 0, NULL, NULL); in test_newOP_CUSTOM()
4722 o = newPMOP(OP_CUSTOM, 0); in test_newOP_CUSTOM()
4724 o = newSVOP(OP_CUSTOM, 0, newSV(0)); in test_newOP_CUSTOM()
4731 o = newPADOP(OP_CUSTOM, 0, newSV(0)); in test_newOP_CUSTOM()
4737 o = newPVOP(OP_CUSTOM, 0, NULL); in test_newOP_CUSTOM()
[all …]
/openbsd/gnu/usr.bin/perl/ext/Devel-Peek/
H A DPeek.xs400 newop->op_type = OP_CUSTOM; in S_ck_dump()
/openbsd/gnu/usr.bin/perl/lib/B/
H A DDeparse.pm1677 ($_[1]->type == OP_CUSTOM ? "CUSTOM ($AUTOLOAD)" : uc $AUTOLOAD);
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlguts.pod3705 This feature is implemented as a new op type, C<OP_CUSTOM>. The Perl
3720 creating ops with the type C<OP_CUSTOM> and the C<op_ppaddr> of your own
3728 have multiple custom ops within the one "logical" op type C<OP_CUSTOM>,