Searched defs:op_type (Results 1 - 1 of 1) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_compile.c4393 int repeat_type, op_type; local
5541 op_type = 0; /* Default single-char op codes */
5637 case OP_CHAR: op_type = OP_STAR - OP_STAR; break;
5638 case OP_CHARI: op_type = OP_STARI - OP_STAR; break;
5639 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break;
5640 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break;
5676 repeats by setting op_type to add a suitable offset into repeat_type. Note
5685 op_type = OP_TYPESTAR - OP_STAR; /* Use type opcodes */
5704 /* Combine the op_type with the repeat_type */
5706 repeat_type += op_type;
[all...]

Completed in 80 milliseconds