Lines Matching refs:bitspec
36 static void set_opset_bits (pTHX_ char *bitmap, SV *bitspec, int on, const char *opname);
164 set_opset_bits(pTHX_ char *bitmap, SV *bitspec, int on, const char *opname) in set_opset_bits() argument
166 if (SvIOK(bitspec)) { in set_opset_bits()
167 const int myopcode = SvIV(bitspec); in set_opset_bits()
180 else if (SvPOK(bitspec) && SvCUR(bitspec) == opset_len) { in set_opset_bits()
183 const char * const specbits = SvPV(bitspec, len); in set_opset_bits()
193 opname, (unsigned)SvTYPE(bitspec)); in set_opset_bits()
392 SV *bitspec; variable
402 bitspec = ST(i);
407 bitspec = get_op_bitspec(aTHX_ opname, len, 1);
409 set_opset_bits(aTHX_ bitmap, bitspec, on, opname);
426 SV *bitspec, *mask; variable
444 bitspec = ST(i);
450 bitspec = get_op_bitspec(aTHX_ opname, len, 1); /* croaks */
452 set_opset_bits(aTHX_ bitmap, bitspec, on, opname);
471 SV *bitspec = get_op_bitspec(aTHX_ opname, len, 1); variable
472 if (SvIOK(bitspec)) {
473 const int myopcode = SvIV(bitspec);
479 else if (SvPOK(bitspec) && SvCUR(bitspec) == opset_len) {
482 const char * const bitmap = SvPV_nolen_const(bitspec);
495 opname, (unsigned)SvTYPE(bitspec));