Lines Matching refs:bracode
5653 PCRE2_UCHAR *bracode = ketcode - GET(ketcode, 1); in compile_branch() local
5657 if ((*bracode == OP_ONCE || *bracode == OP_ONCE_NC) && in compile_branch()
5658 possessive_quantifier) *bracode = OP_BRA; in compile_branch()
5663 if (*bracode == OP_ONCE || *bracode == OP_ONCE_NC) in compile_branch()
5676 PCRE2_UCHAR *scode = bracode; in compile_branch()
5689 *bracode += OP_SBRA - OP_BRA; in compile_branch()
5699 if (*bracode == OP_COND && bracode[GET(bracode,1)] != OP_ALT) in compile_branch()
5700 *bracode = OP_SCOND; in compile_branch()
5711 if (*bracode == OP_COND || *bracode == OP_SCOND) in compile_branch()
5713 int nlen = (int)(code - bracode); in compile_branch()
5714 memmove(bracode + 1 + LINK_SIZE, bracode, CU2BYTES(nlen)); in compile_branch()
5717 *bracode = (*bracode == OP_COND)? OP_BRAPOS : OP_SBRAPOS; in compile_branch()
5720 PUT(bracode, 1, nlen); in compile_branch()
5727 *bracode += 1; /* Switch to xxxPOS opcodes */ in compile_branch()