Searched refs:logop (Results 1 – 5 of 5) sorted by relevance
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | op.c | 3521 LOGOP *logop; in S_new_logop() local 3609 NewOp(1101, logop, 1, LOGOP); in S_new_logop() 3611 logop->op_type = (OPCODE)type; in S_new_logop() 3612 logop->op_ppaddr = PL_ppaddr[type]; in S_new_logop() 3613 logop->op_first = first; in S_new_logop() 3614 logop->op_flags = (U8)(flags | OPf_KIDS); in S_new_logop() 3615 logop->op_other = LINKLIST(other); in S_new_logop() 3616 logop->op_private = (U8)(1 | (flags >> 8)); in S_new_logop() 3619 logop->op_next = LINKLIST(first); in S_new_logop() 3620 first->op_next = (OP*)logop; in S_new_logop() [all …]
|
| D | op.h | 242 struct logop { struct
|
| D | perl.h | 2089 typedef struct logop LOGOP;
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/B/ |
| D | Deparse.pm | 2078 sub logop { 2105 sub pp_and { logop(@_, "and", 3, "&&", 11, "if") } 2106 sub pp_or { logop(@_, "or", 2, "||", 10, "unless") } 2107 sub pp_dor { logop(@_, "err", 2, "//", 10, "") } 2111 sub pp_xor { logop(@_, "xor", 2, "", 0, "") }
|
| D | C.pm | 1990 listop => \$listopsect, logop => \$logopsect,
|