Searched refs:LINK_SIZE (Results 1 - 14 of 14) sorted by relevance

/external/pcre/
H A Dconfig.h156 /* The value of LINK_SIZE determines the number of bytes used to store links
161 #ifndef LINK_SIZE
162 #define LINK_SIZE 2 macro
/external/pcre/dist/
H A Dconfig.h.generic156 /* The value of LINK_SIZE determines the number of bytes used to store links
161 #ifndef LINK_SIZE
162 #define LINK_SIZE 2
H A Dpcre_compile.c106 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)
1721 register pcre_uchar *cc = code + 1 + LINK_SIZE;
1748 cc += 1 + LINK_SIZE;
1765 cc += 1 + LINK_SIZE;
1781 cc += 1 + LINK_SIZE;
2077 int n = (int)GET2(code, 1+LINK_SIZE);
2387 for (tcode = cd->start_workspace; tcode < cd->hwm; tcode += LINK_SIZE)
[all...]
H A Dconfig-cmake.h.in48 #define LINK_SIZE @PCRE_LINK_SIZE@
H A Dpcre_study.c90 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 Dpcre_config.c49 static int real_link_size = LINK_SIZE;
H A Dpcre_internal.h421 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 Dconfig.h.in156 /* The value of LINK_SIZE determines the number of bytes used to store links
161 #undef LINK_SIZE
H A Dpcre_dfa_exec.c456 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 Dpcre_byte_order.c289 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 Dpcre_jit_compile.c553 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 Dpcre_exec.c879 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 Dpcre_printint.c296 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;
H A Dpcretest.c1067 defined as a macro. However, we must ensure that LINK_SIZE and IMM2_SIZE (which
1069 LINK_SIZE is also used later in this program. */
1075 #if LINK_SIZE == 2
1076 #undef LINK_SIZE macro
1077 #define LINK_SIZE 1 macro
1078 #elif LINK_SIZE == 3 || LINK_SIZE == 4
1079 #undef LINK_SIZE macro
1080 #define LINK_SIZE 2 macro
1082 #error LINK_SIZE mus
1093 #undef LINK_SIZE macro
1094 #define LINK_SIZE macro
[all...]

Completed in 1977 milliseconds