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

/barrelfish-2018-10-04/lib/pcre/
H A Dconfig.h204 /* The value of LINK_SIZE determines the number of bytes used to store links
209 #ifndef LINK_SIZE
210 #define LINK_SIZE 2 macro
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)
1745 register pcre_uchar *cc = code + 1 + LINK_SIZE;
1773 cc += 1 + LINK_SIZE;
1790 cc += 1 + LINK_SIZE;
1814 cc += 1 + LINK_SIZE;
1824 cc += 1 + LINK_SIZE;
2110 int n = (int)GET2(code, 1+LINK_SIZE);
[all...]
H A Dpcre_study.c93 register pcre_uchar *cc = (pcre_uchar *)code + 1 + LINK_SIZE;
121 cc = cs + 1 + LINK_SIZE;
142 cc += 1 + LINK_SIZE;
166 cc += 1 + LINK_SIZE;
210 cc += 1 + LINK_SIZE;
526 cc += 1 + LINK_SIZE;
833 const pcre_uchar *tcode = code + 1 + LINK_SIZE;
978 tcode += 1 + LINK_SIZE;
1003 tcode += 2 + 2*LINK_SIZE;
1012 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 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_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;
1268 ecode += 1 + LINK_SIZE;
1289 ecode += 1 + LINK_SIZE; /* From this opcode */
1313 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;

Completed in 178 milliseconds