Searched refs:LINK_SIZE (Results 1 - 10 of 10) sorted by relevance
/forgerock/web-agents-v4/pcre/ |
H A D | pcre_config.h | 127 /* The value of LINK_SIZE determines the number of bytes used to store links 132 #define LINK_SIZE 2 macro
|
H A D | pcre_compile.c | 106 end. Each entry in this list occupies LINK_SIZE bytes, so even when LINK_SIZE 112 minimum is now also defined in terms of LINK_SIZE so that the use of malloc() 115 #define COMPILE_WORK_SIZE (2048*LINK_SIZE) 1725 register pcre_uchar *cc = code + 1 + LINK_SIZE; 1752 cc += 1 + LINK_SIZE; 1769 cc += 1 + LINK_SIZE; 1785 cc += 1 + LINK_SIZE; 2081 int n = (int)GET2(code, 1+LINK_SIZE); 2391 for (tcode = cd->start_workspace; tcode < cd->hwm; tcode += LINK_SIZE) [all...] |
H A D | pcre_study.c | 90 register pcre_uchar *cc = (pcre_uchar *)code + 1 + LINK_SIZE; 116 cc = cs + 1 + LINK_SIZE; 137 cc += 1 + LINK_SIZE; 161 cc += 1 + LINK_SIZE; 205 cc += 1 + LINK_SIZE; 484 cc += 1 + LINK_SIZE; 791 const pcre_uchar *tcode = code + 1 + LINK_SIZE; 936 tcode += 1 + LINK_SIZE; 961 tcode += 2 + 2*LINK_SIZE; 970 tcode += 1 + LINK_SIZE; [all...] |
H A D | pcre_config.c | 49 static int real_link_size = LINK_SIZE;
|
H A D | pcre_internal.h | 421 The macros are controlled by the value of LINK_SIZE. This defaults to 2 in 427 #if LINK_SIZE == 2 439 #elif LINK_SIZE == 3 452 #elif LINK_SIZE == 4 467 #error LINK_SIZE must be either 2, 3, or 4 472 #if LINK_SIZE == 2 474 /* Redefine LINK_SIZE as a multiple of sizeof(pcre_uchar) */ 475 #undef LINK_SIZE macro 476 #define LINK_SIZE 1 macro 486 #elif LINK_SIZE 489 #undef LINK_SIZE macro 490 #define LINK_SIZE macro 510 #undef LINK_SIZE macro 511 #define LINK_SIZE macro [all...] |
H A D | pcre_dfa_exec.c | 456 first_op = this_start_code + 1 + LINK_SIZE + 478 int back = GET(end_code, 2+LINK_SIZE); 520 int back = GET(end_code, 2+LINK_SIZE); 523 int bstate = (int)(end_code - start_code + 2 + 2*LINK_SIZE); 555 int length = 1 + LINK_SIZE + 563 length = 1 + LINK_SIZE; 777 ADD_ACTIVE(state_offset + 1 + LINK_SIZE, 0); 828 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0); 837 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE + IMM2_SIZE), 0); 841 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), [all...] |
H A D | pcre_byte_order.c | 289 if (LINK_SIZE > 1) 291 /* LINK_SIZE can be 1 or 2 in 16 bit mode. */ 297 length = (GET(ptr, -LINK_SIZE)) - (1 + LINK_SIZE + 1);
|
H A D | pcre_jit_compile.c | 553 cc += 1 + LINK_SIZE; 812 cc += 1 + LINK_SIZE + (*cc == OP_CBRA || *cc == OP_SCBRA ? IMM2_SIZE : 0); 817 common->optimized_cbracket[GET2(cc, 1 + LINK_SIZE)] = 0; 818 cc += 1 + LINK_SIZE + IMM2_SIZE; 825 if (cc[1 + LINK_SIZE] == OP_CALLOUT) 827 cc += 1 + LINK_SIZE; 855 cc += 1 + LINK_SIZE; 864 cc += 2 + 2 * LINK_SIZE; 948 if (end[-(1 + LINK_SIZE)] != OP_KET) 952 if (common->private_data_ptrs[end - common->start - LINK_SIZE] ! [all...] |
H A D | pcre_exec.c | 879 RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM64); 918 ecode += 1+LINK_SIZE; 928 RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM65); 937 ecode += 1 + LINK_SIZE; 958 number = GET2(ecode, 1+LINK_SIZE); 1129 number = GET2(ecode, 1+LINK_SIZE); 1209 ecode += 1 + LINK_SIZE; 1280 ecode += 1 + LINK_SIZE; 1301 ecode += 1 + LINK_SIZE; /* From this opcode */ 1325 cb.next_item_length = GET(ecode, 2 + LINK_SIZE); [all...] |
H A D | pcre_printint.c | 296 written that do not depend on the value of LINK_SIZE. */ 397 fprintf(f, "%s %d", priv_OP_names[*code], GET2(code, 1+LINK_SIZE)); 628 GET(code, 2 + LINK_SIZE)); 656 ccode = code + LINK_SIZE + 1;
|
Completed in 1196 milliseconds