Lines Matching refs:tempcode
5663 PCRE2_UCHAR *tempcode; in compile_branch() local
6552 tempcode = code++; in compile_branch()
6571 *tempcode = verbculen; /* Fill in the code unit length */ in compile_branch()
6823 tempcode = code; in compile_branch()
6831 &tempcode, /* Where to put code (updated) */ in compile_branch()
6937 code = tempcode; in compile_branch()
7257 tempcode = previous; in compile_branch()
7931 switch(*tempcode) in compile_branch()
7934 tempcode += PRIV(OP_lengths)[*tempcode] + in compile_branch()
7935 ((tempcode[1 + IMM2_SIZE] == OP_PROP in compile_branch()
7936 || tempcode[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0); in compile_branch()
7949 tempcode += PRIV(OP_lengths)[*tempcode]; in compile_branch()
7951 if (utf && HAS_EXTRALEN(tempcode[-1])) in compile_branch()
7952 tempcode += GET_EXTRALEN(tempcode[-1]); in compile_branch()
7961 tempcode += 1 + 32/sizeof(PCRE2_UCHAR); in compile_branch()
7966 tempcode += GET(tempcode, 1); in compile_branch()
7977 len = (int)(code - tempcode); in compile_branch()
7980 unsigned int repcode = *tempcode; in compile_branch()
7987 *tempcode = opcode_possessify[repcode]; in compile_branch()
7994 (void)memmove(tempcode + 1 + LINK_SIZE, tempcode, CU2BYTES(len)); in compile_branch()
7997 tempcode[0] = OP_ONCE; in compile_branch()
8000 PUT(tempcode, 1, len); in compile_branch()