Searched defs:logop (Results 1 - 3 of 3) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | op.h | 237 struct logop { struct
|
H A D | op.c | 3426 LOGOP *logop; local 3514 NewOp(1101, logop, 1, LOGOP); 3516 logop->op_type = (OPCODE)type; 3517 logop->op_ppaddr = PL_ppaddr[type]; 3518 logop->op_first = first; 3519 logop->op_flags = flags | OPf_KIDS; 3520 logop->op_other = LINKLIST(other); 3521 logop->op_private = (U8)(1 | (flags >> 8)); 3524 logop->op_next = LINKLIST(first); 3525 first->op_next = (OP*)logop; 3539 LOGOP *logop; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
H A D | Deparse.pm | 2076 sub logop { subroutine 2103 sub pp_and { logop(@_, "and", 3, "&&", 11, "if") } 2104 sub pp_or { logop(@_, "or", 2, "||", 10, "unless") } 2106 # xor is syntactically a logop, but it's really a binop (contrary to 2108 sub pp_xor { logop(@_, "xor", 2, "", 0, "") }
|
Completed in 35 milliseconds