Lines Matching refs:tempcode
4936 PCRE2_UCHAR *tempcode; in compile_branch() local
5762 tempcode = code++; in compile_branch()
5781 *tempcode = verbculen; /* Fill in the code unit length */ in compile_branch()
6017 tempcode = code; in compile_branch()
6024 &tempcode, /* Where to put code (updated) */ in compile_branch()
6129 code = tempcode; in compile_branch()
6465 tempcode = previous; in compile_branch()
7121 switch(*tempcode) in compile_branch()
7124 tempcode += PRIV(OP_lengths)[*tempcode] + in compile_branch()
7125 ((tempcode[1 + IMM2_SIZE] == OP_PROP in compile_branch()
7126 || tempcode[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0); in compile_branch()
7139 tempcode += PRIV(OP_lengths)[*tempcode]; in compile_branch()
7141 if (utf && HAS_EXTRALEN(tempcode[-1])) in compile_branch()
7142 tempcode += GET_EXTRALEN(tempcode[-1]); in compile_branch()
7151 tempcode += 1 + 32/sizeof(PCRE2_UCHAR); in compile_branch()
7156 tempcode += GET(tempcode, 1); in compile_branch()
7167 len = (int)(code - tempcode); in compile_branch()
7170 unsigned int repcode = *tempcode; in compile_branch()
7177 *tempcode = opcode_possessify[repcode]; in compile_branch()
7184 (void)memmove(tempcode + 1 + LINK_SIZE, tempcode, CU2BYTES(len)); in compile_branch()
7187 tempcode[0] = OP_ONCE; in compile_branch()
7190 PUT(tempcode, 1, len); in compile_branch()